diff --git a/test/Tmdb/Tests/Factory/GenreFactoryTest.php b/test/Tmdb/Tests/Factory/GenreFactoryTest.php index f856046c..8fcc9550 100644 --- a/test/Tmdb/Tests/Factory/GenreFactoryTest.php +++ b/test/Tmdb/Tests/Factory/GenreFactoryTest.php @@ -35,6 +35,8 @@ public function shouldConstructGenres() // @todo actually get the first foreach($filteredGenres as $filteredGenre) { $this->assertInstanceOf('Tmdb\Model\Genre', $filteredGenre); + + $this->assertEquals('Action', $filteredGenre->getName()); } }