]> Raphaƫl G. Git Repositories - youtubedl/blobdiff - test/test_youtube_lists.py
Imported Upstream version 2013.12.23
[youtubedl] / test / test_youtube_lists.py
index 95f07d129b61df97376c6699f05a656043be4773..d9fe5af4eec5fe791fce6d7fc06a6efb262213e4 100644 (file)
@@ -15,6 +15,7 @@ from youtube_dl.extractor import (
     YoutubeIE,
     YoutubeChannelIE,
     YoutubeShowIE,
+    YoutubeTopListIE,
 )
 
 
@@ -116,5 +117,12 @@ class TestYoutubeLists(unittest.TestCase):
         original_video = entries[0]
         self.assertEqual(original_video['id'], 'rjFaenf1T-Y')
 
+    def test_youtube_toplist(self):
+        dl = FakeYDL()
+        ie = YoutubeTopListIE(dl)
+        result = ie.extract('yttoplist:music:Top Tracks')
+        entries = result['entries']
+        self.assertTrue(len(entries) >= 5)
+
 if __name__ == '__main__':
     unittest.main()