diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-08-24 07:02:29 +0200 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-08-24 07:02:29 +0200 | 
| commit | 11f75cac3db14681b306633a496e9aaae2cfc0a7 (patch) | |
| tree | 3e383f5389240840a4408137cf05502116b35c10 /test | |
| parent | e673db0194a40b0904c2196426a1ec2cbc030945 (diff) | |
| parent | 8c778adc39fbaa79a6e885532b933364c9952817 (diff) | |
Merge remote-tracking branch 'olebowle/gameone'
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_playlists.py | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_playlists.py b/test/test_playlists.py index 6448fea38..0691ff110 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -62,6 +62,7 @@ from youtube_dl.extractor import (      InstagramUserIE,      CSpanIE,      AolIE, +    GameOnePlaylistIE,  ) @@ -407,5 +408,13 @@ class TestPlaylists(unittest.TestCase):          self.assertEqual(result['id'], 'rbhagwati2')          assertGreaterEqual(self, len(result['entries']), 179) +    def test_GameOne_playlist(self): +        dl = FakeYDL() +        ie = GameOnePlaylistIE(dl) +        result = ie.extract('http://www.gameone.de/tv') +        self.assertIsPlaylist(result) +        self.assertEqual(result['title'], 'GameOne') +        assertGreaterEqual(self, len(result['entries']), 294) +  if __name__ == '__main__':      unittest.main()  | 
