aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_YoutubeDL.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-04-16 01:14:05 +0700
committerSergey M․ <dstftw@gmail.com>2017-04-16 01:14:05 +0700
commit51350db5a395c45cb181b1813a71b5e1aff86993 (patch)
tree45ab542966d27c690788692e9051992d61c4930d /test/test_YoutubeDL.py
parent0563f7ac6ed49929e1b488d92439928271c403df (diff)
downloadyoutube-dl-51350db5a395c45cb181b1813a71b5e1aff86993.zip
youtube-dl-51350db5a395c45cb181b1813a71b5e1aff86993.tar.gz
youtube-dl-51350db5a395c45cb181b1813a71b5e1aff86993.tar.bz2
[test_YoutubeDL] Add test for #11163
Diffstat (limited to 'test/test_YoutubeDL.py')
-rw-r--r--test/test_YoutubeDL.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py
index 8491a88..75945e3 100644
--- a/test/test_YoutubeDL.py
+++ b/test/test_YoutubeDL.py
@@ -755,6 +755,7 @@ class TestYoutubeDL(unittest.TestCase):
'_type': 'url_transparent',
'url': 'foo2:',
'ie_key': 'Foo2',
+ 'title': 'foo1 title'
}
class Foo2IE(InfoExtractor):
@@ -771,7 +772,7 @@ class TestYoutubeDL(unittest.TestCase):
_VALID_URL = r'foo3:'
def _real_extract(self, url):
- return _make_result([{'url': TEST_URL}])
+ return _make_result([{'url': TEST_URL}], title='foo3 title')
ydl.add_info_extractor(Foo1IE(ydl))
ydl.add_info_extractor(Foo2IE(ydl))
@@ -779,6 +780,7 @@ class TestYoutubeDL(unittest.TestCase):
ydl.extract_info('foo1:')
downloaded = ydl.downloaded_info_dicts[0]
self.assertEqual(downloaded['url'], TEST_URL)
+ self.assertEqual(downloaded['title'], 'foo1 title')
if __name__ == '__main__':