Example #1
0
 public function testShouldRemoveTheExpiredItem()
 {
     $this->checkDeps();
     $params = array(WURFL_Configuration_Config::EXPIRATION => 1);
     $storage = new WURFL_Storage_Memcache($params);
     $storage->save("key", "value");
     sleep(2);
     $this->assertEquals(NULL, $storage->load("key"));
 }