diff --git a/test/Tmdb/Tests/Repository/GenreRepositoryTest.php b/test/Tmdb/Tests/Repository/GenreRepositoryTest.php index 349553fe..a2b2e00f 100644 --- a/test/Tmdb/Tests/Repository/GenreRepositoryTest.php +++ b/test/Tmdb/Tests/Repository/GenreRepositoryTest.php @@ -36,6 +36,16 @@ public function shouldLoadCollection() $repository->loadCollection(); } + /** + * @test + */ + public function shouldGetMovies() + { + $repository = $this->getRepositoryWithMockedHttpClient(); + + $repository->getMovies(self::GENRE_ID); + } + /** * @test */