/**
  * @todo
  */
 public function shouldBeAbleSetLogging()
 {
     $path = '/tmp/php-tmdb-api.log';
     $this->client->setLogging(true, $path);
     $this->assertEquals(true, $this->client->getLogEnabled());
     $this->assertEquals($path, $this->client->getLogPath());
 }