예제 #1
0
파일: cache.Test.php 프로젝트: poef/ariadne
 function testPath()
 {
     $testCache = \arc\cache::create('test');
     $testCache->cd('foo')->set('bar', 'ok');
     $subCache = $testCache->cd('foo');
     $result = $subCache->get('bar');
     $this->assertTrue($result == 'ok');
 }