mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 08:47:45 +02:00
[ticket/9983] get/put cache test moved to a base class.
PHPBB3-9983
This commit is contained in:
10
tests/cache/null_driver_test.php
vendored
10
tests/cache/null_driver_test.php
vendored
@@ -23,6 +23,16 @@ class phpbb_cache_null_driver_test extends phpbb_database_test_case
|
||||
$this->driver = new phpbb_cache_driver_null;
|
||||
}
|
||||
|
||||
public function test_get_put()
|
||||
{
|
||||
$this->assertSame(false, $this->driver->get('key'));
|
||||
|
||||
$this->driver->put('key', 'value');
|
||||
|
||||
// null driver does not cache
|
||||
$this->assertSame(false, $this->driver->get('key'));
|
||||
}
|
||||
|
||||
public function test_null_cache_sql()
|
||||
{
|
||||
global $db, $cache;
|
||||
|
Reference in New Issue
Block a user