aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cache
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-12-01 18:52:04 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2012-12-01 18:52:04 -0500
commit90bd7858fdf418c45bac1b30a4dc634cd23f5247 (patch)
tree0a086607ccbf1cd99fa6bdf94d0f8d343a6c5136 /tests/cache
parentc3d1408c52dabcafa314fcc13d19f0c537d3a5df (diff)
downloadforums-90bd7858fdf418c45bac1b30a4dc634cd23f5247.tar
forums-90bd7858fdf418c45bac1b30a4dc634cd23f5247.tar.gz
forums-90bd7858fdf418c45bac1b30a4dc634cd23f5247.tar.bz2
forums-90bd7858fdf418c45bac1b30a4dc634cd23f5247.tar.xz
forums-90bd7858fdf418c45bac1b30a4dc634cd23f5247.zip
[ticket/9983] Rename test methods.
PHPBB3-9983
Diffstat (limited to 'tests/cache')
-rw-r--r--tests/cache/file_driver_test.php2
-rw-r--r--tests/cache/null_driver_test.php2
-rw-r--r--tests/cache/redis_driver_test.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/cache/file_driver_test.php b/tests/cache/file_driver_test.php
index 67408cc6d9..2353940277 100644
--- a/tests/cache/file_driver_test.php
+++ b/tests/cache/file_driver_test.php
@@ -67,7 +67,7 @@ class phpbb_cache_file_driver_test extends phpbb_cache_common_test_case
rmdir($this->cache_dir);
}
- public function test_cache_sql_file()
+ public function test_cache_sql()
{
global $db, $cache;
$db = $this->new_dbal();
diff --git a/tests/cache/null_driver_test.php b/tests/cache/null_driver_test.php
index efa56762bf..a9b40c5f40 100644
--- a/tests/cache/null_driver_test.php
+++ b/tests/cache/null_driver_test.php
@@ -33,7 +33,7 @@ class phpbb_cache_null_driver_test extends phpbb_database_test_case
$this->assertSame(false, $this->driver->get('key'));
}
- public function test_null_cache_sql()
+ public function test_cache_sql()
{
global $db, $cache;
$db = $this->new_dbal();
diff --git a/tests/cache/redis_driver_test.php b/tests/cache/redis_driver_test.php
index bf8e49eb65..cd24e33baf 100644
--- a/tests/cache/redis_driver_test.php
+++ b/tests/cache/redis_driver_test.php
@@ -47,7 +47,7 @@ class phpbb_cache_redis_driver_test extends phpbb_cache_common_test_case
$this->driver->purge();
}
- public function test_cache_sql_redis()
+ public function test_cache_sql()
{
global $db, $cache;
$db = $this->new_dbal();