summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/cache.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/lib/cache.php b/tests/lib/cache.php
index 23cbd3506eb..fdc39aec184 100644
--- a/tests/lib/cache.php
+++ b/tests/lib/cache.php
@@ -43,5 +43,14 @@ abstract class Test_Cache extends UnitTestCase {
}
function testTTL(){
+ $value='foobar';
+ $this->instance->set('value1',$value,1);
+ $value2='foobar';
+ $this->instance->set('value2',$value2);
+ sleep(2);
+ $this->assertFalse($this->instance->hasKey('value1'));
+ $this->assertNull($this->instance->get('value1'));
+ $this->assertTrue($this->instance->hasKey('value2'));
+ $this->assertEqual($value2,$this->instance->get('value2'));
}
} \ No newline at end of file