diff --git a/test/Tmdb/Tests/Repository/ListRepositoryTest.php b/test/Tmdb/Tests/Repository/ListRepositoryTest.php new file mode 100644 index 00000000..c4a6f353 --- /dev/null +++ b/test/Tmdb/Tests/Repository/ListRepositoryTest.php @@ -0,0 +1,38 @@ + + * @copyright (c) 2013, Michael Roterman + * @version 0.0.1 + */ +namespace Tmdb\Tests\Repository; + +class ListRepositoryTest extends TestCase +{ + const LIST_ID = '509ec17b19c2950a0600050d'; + + /** + * @test + */ + public function shouldLoadList() + { + $repository = $this->getRepositoryWithMockedHttpClient(); + + $repository->load(self::LIST_ID); + } + + protected function getApiClass() + { + return 'Tmdb\Api\Lists'; + } + + protected function getRepositoryClass() + { + return 'Tmdb\Repository\ListRepository'; + } +} \ No newline at end of file