1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-09 14:58:54 +00:00

[test_YoutubeDL] Add test for #14425

This commit is contained in:
Sergey M․ 2017-10-06 23:41:28 +07:00
parent 7e85e8729f
commit 86a15ed64b
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -770,6 +770,9 @@ class TestYoutubeDL(unittest.TestCase):
result = get_ids({'playlist_items': '10'})
self.assertEqual(result, [])
result = get_ids({'playlist_items': '3-10'})
self.assertEqual(result, [3, 4])
def test_urlopen_no_file_protocol(self):
# see https://github.com/rg3/youtube-dl/issues/8227
ydl = YDL()