mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
[ticket/9983] get/put cache test moved to a base class.
PHPBB3-9983
This commit is contained in:
16
tests/cache/file_driver_test.php
vendored
16
tests/cache/file_driver_test.php
vendored
@@ -7,7 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
class phpbb_cache_file_driver_test extends phpbb_database_test_case
|
||||
require_once dirname(__FILE__) . '/common_test_case.php';
|
||||
|
||||
class phpbb_cache_file_driver_test extends phpbb_cache_common_test_case
|
||||
{
|
||||
private $cache_dir;
|
||||
protected $driver;
|
||||
@@ -65,18 +67,6 @@ class phpbb_cache_file_driver_test extends phpbb_database_test_case
|
||||
rmdir($this->cache_dir);
|
||||
}
|
||||
|
||||
public function test_cache_driver_file()
|
||||
{
|
||||
$this->driver->put('test_key', 'test_value');
|
||||
$this->driver->save();
|
||||
|
||||
$this->assertEquals(
|
||||
'test_value',
|
||||
$this->driver->get('test_key'),
|
||||
'File ACM put and get'
|
||||
);
|
||||
}
|
||||
|
||||
public function test_cache_sql_file()
|
||||
{
|
||||
global $db, $cache;
|
||||
|
Reference in New Issue
Block a user