public function MemcachedCacheTest::testNoExpire in Plug 7
File
- lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ MemcachedCacheTest.php, line 35
Class
Namespace
Doctrine\Tests\Common\CacheCode
public function testNoExpire() {
$cache = $this
->_getCacheDriver();
$cache
->save('noexpire', 'value', 0);
sleep(1);
$this
->assertTrue($cache
->contains('noexpire'), 'Memcache provider should support no-expire');
}