X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=blobdiff_plain;f=test%2Ftest_YoutubeDL.py;h=5ac34e6635102092936cfdefd8f4b62a75eeeae0;hp=e70cbcd375a4670bb586612ccaa107605dc985dc;hb=86a15ed64b410336b2145f4a6b8e8a22cbf24f51;hpb=7e85e8729f1e2ed9817466acef30fa6dc7e03e1e diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py index e70cbcd37..5ac34e663 100644 --- a/test/test_YoutubeDL.py +++ b/test/test_YoutubeDL.py @@ -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()