aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-08-24 07:05:49 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-08-24 07:05:49 +0200
commit28028629b90053cab58e73c692195256155806c5 (patch)
tree33328b2ee689c4f4adb2bcf205dcf9b242aa085f /test
parent11f75cac3db14681b306633a496e9aaae2cfc0a7 (diff)
downloadyoutube-dl-28028629b90053cab58e73c692195256155806c5.tar.xz
[gameone:playlist] Move test to extractor
Diffstat (limited to 'test')
-rw-r--r--test/test_playlists.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/test_playlists.py b/test/test_playlists.py
index 0691ff110..3f79a7d6a 100644
--- a/test/test_playlists.py
+++ b/test/test_playlists.py
@@ -408,13 +408,6 @@ 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()