youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 86a15ed64b410336b2145f4a6b8e8a22cbf24f51
parent 7e85e8729f1e2ed9817466acef30fa6dc7e03e1e
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri,  6 Oct 2017 23:41:28 +0700

[test_YoutubeDL] Add test for #14425

Diffstat:
Mtest/test_YoutubeDL.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git 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()