Einthusan Add new extractor
[youtube-dl] / test / test_playlists.py
index 0691ff11063359ad0091a2608896eebf03292269..0137b8399c1e01318a9c1ce9d143c8487d761e7b 100644 (file)
@@ -310,24 +310,6 @@ class TestPlaylists(unittest.TestCase):
         self.assertEqual(result['title'], 'Always/Never: A Little-Seen Movie About Nuclear Command and Control : The New Yorker')
         self.assertEqual(len(result['entries']), 3)
 
-    def test_GoogleSearch(self):
-        dl = FakeYDL()
-        ie = GoogleSearchIE(dl)
-        result = ie.extract('gvsearch15:python language')
-        self.assertIsPlaylist(result)
-        self.assertEqual(result['id'], 'python language')
-        self.assertEqual(result['title'], 'python language')
-        self.assertEqual(len(result['entries']), 15)
-
-    def test_generic_rss_feed(self):
-        dl = FakeYDL()
-        ie = GenericIE(dl)
-        result = ie.extract('http://phihag.de/2014/youtube-dl/rss.xml')
-        self.assertIsPlaylist(result)
-        self.assertEqual(result['id'], 'http://phihag.de/2014/youtube-dl/rss.xml')
-        self.assertEqual(result['title'], 'Zero Punctuation')
-        self.assertTrue(len(result['entries']) > 10)
-
     def test_ted_playlist(self):
         dl = FakeYDL()
         ie = TEDIE(dl)
@@ -408,13 +390,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()