Selaa lähdekoodia

[test_YoutubeDL] Add test for #14425

Sergey M․ 8 vuotta sitten
vanhempi
sitoutus
86a15ed64b
1 muutettua tiedostoa jossa 3 lisäystä ja 0 poistoa
  1. 3 0
      test/test_YoutubeDL.py

+ 3 - 0
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()