[test_YoutubeDL] Add test for #14425
authorSergey M․ <dstftw@gmail.com>
Fri, 6 Oct 2017 16:41:28 +0000 (23:41 +0700)
committerSergey M․ <dstftw@gmail.com>
Fri, 6 Oct 2017 16:41:28 +0000 (23:41 +0700)
test/test_YoutubeDL.py

index e70cbcd375a4670bb586612ccaa107605dc985dc..5ac34e6635102092936cfdefd8f4b62a75eeeae0 100644 (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()