From b6a06ab05b0d6c35f289125e648fcbd774785c49 Mon Sep 17 00:00:00 2001 From: Michael Roterman Date: Sun, 23 Feb 2014 15:03:37 +0100 Subject: [PATCH] Updating GenreRepositoryTest --- test/Tmdb/Tests/Repository/GenreRepositoryTest.php | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 */