/**
  * @todo
  */
 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());
 }