コード例 #1
0
 def test_youtube_user(self):
     dl = FakeDownloader()
     ie = YoutubeUserIE(dl)
     result = ie.extract('https://www.youtube.com/user/TheLinuxFoundation')[0]
     self.assertTrue(len(result['entries']) >= 320)
コード例 #2
0
 def test_youtube_user(self):
     DL = FakeDownloader()
     IE = YoutubeUserIE(DL)
     IE.extract('https://www.youtube.com/user/TheLinuxFoundation')
     self.assertTrue(len(DL.result) >= 320)
コード例 #3
0
 def test_youtube_user(self):
     dl = FakeDownloader()
     ie = YoutubeUserIE(dl)
     ie.extract('https://www.youtube.com/user/TheLinuxFoundation')
     self.assertTrue(len(dl.result) >= 320)