YoutubePlaylistIE: don't crash with empty lists (related #808)
The playlist_title wasn't initialized.
This commit is contained in:
parent
3820df0106
commit
aba8df23ed
2 changed files with 8 additions and 2 deletions
|
@ -71,6 +71,13 @@ class TestYoutubeLists(unittest.TestCase):
|
|||
ytie_results = [YoutubeIE()._extract_id(url['url']) for url in result['entries']]
|
||||
self.assertFalse('pElCt5oNDuI' in ytie_results)
|
||||
self.assertFalse('KdPEApIVdWM' in ytie_results)
|
||||
|
||||
def test_youtube_playlist_empty(self):
|
||||
dl = FakeDownloader()
|
||||
ie = YoutubePlaylistIE(dl)
|
||||
result = ie.extract('https://www.youtube.com/playlist?list=PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx')[0]
|
||||
self.assertIsPlaylist(result)
|
||||
self.assertEqual(len(result['entries']), 0)
|
||||
|
||||
def test_youtube_course(self):
|
||||
dl = FakeDownloader()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue