public function CouchbaseCacheTest::testLongLifetime in Plug 7
File
- lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ CouchbaseCacheTest.php, line 33  
Class
Namespace
Doctrine\Tests\Common\CacheCode
public function testLongLifetime() {
  $cache = $this
    ->_getCacheDriver();
  $cache
    ->save('key', 'value', 30 * 24 * 3600 + 1);
  $this
    ->assertTrue($cache
    ->contains('key'), 'Couchbase provider should support TTL > 30 days');
}