aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-08-24 07:02:29 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-08-24 07:02:29 +0200
commit11f75cac3db14681b306633a496e9aaae2cfc0a7 (patch)
tree3e383f5389240840a4408137cf05502116b35c10 /test
parente673db0194a40b0904c2196426a1ec2cbc030945 (diff)
parent8c778adc39fbaa79a6e885532b933364c9952817 (diff)
downloadyoutube-dl-11f75cac3db14681b306633a496e9aaae2cfc0a7.tar.xz
Merge remote-tracking branch 'olebowle/gameone'
Diffstat (limited to 'test')
-rw-r--r--test/test_playlists.py9
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()