X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=test%2Ftest_YoutubeDL.py;fp=test%2Ftest_YoutubeDL.py;h=db936bfb88d4bd0a05be1cc6fd7d1b18ce3a72b6;hb=cd6fc19ed76af6687fb2cb5f87d9ed4c3071c203;hp=5ac34e6635102092936cfdefd8f4b62a75eeeae0;hpb=86a15ed64b410336b2145f4a6b8e8a22cbf24f51;p=youtube-dl diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py index 5ac34e663..db936bfb8 100644 --- a/test/test_YoutubeDL.py +++ b/test/test_YoutubeDL.py @@ -773,6 +773,9 @@ class TestYoutubeDL(unittest.TestCase): result = get_ids({'playlist_items': '3-10'}) self.assertEqual(result, [3, 4]) + result = get_ids({'playlist_items': '2-4,3-4,3'}) + self.assertEqual(result, [2, 3, 4]) + def test_urlopen_no_file_protocol(self): # see https://github.com/rg3/youtube-dl/issues/8227 ydl = YDL()