예제 #1
0
파일: ClientTest.php 프로젝트: n10ty/api
 /**
  * @test
  */
 public function shouldBeAbleSetCache()
 {
     $path = '/tmp/php-tmdb-api';
     $this->client->setCaching(true, $path);
     $this->assertEquals(true, $this->client->getCacheEnabled());
     $this->assertEquals($path, $this->client->getCachePath());
 }