diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-11 23:06:44 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-11 23:06:44 +0600 |
commit | d357bbd375c9e30b882dfb8cd2cded7e19a9936c (patch) | |
tree | f47b17276c5a7be0de3257fa94c8a14c5ffc392a | |
parent | f542a3d26bfb70d59a0418387e508130e753b82e (diff) |
[funimation] Update test
-rw-r--r-- | youtube_dl/extractor/funimation.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/youtube_dl/extractor/funimation.py b/youtube_dl/extractor/funimation.py index 06a57779a..e47fe9b73 100644 --- a/youtube_dl/extractor/funimation.py +++ b/youtube_dl/extractor/funimation.py @@ -21,12 +21,13 @@ class FunimationIE(InfoExtractor): _TEST = { 'url': 'http://www.funimation.com/shows/air/videos/official/breeze', 'info_dict': { - 'id': 'AIRENG0001', - 'title': 'Air - 1 - Breeze ', + 'id': '658', + 'display_id': 'breeze', 'ext': 'mp4', - 'thumbnail': 'http://www.funimation.com/admin/uploads/default/recap_thumbnails/7555590/home_spotlight/AIR0001.jpg', - 'description': 'Travelling puppeteer Yukito arrives in a small town where he hopes to earn money through the magic of his puppets. When a young girl named Misuzu lures him to her home with the promise of food, his life changes forever. ', - } + 'title': 'Air - 1 - Breeze', + 'description': 'md5:1769f43cd5fc130ace8fd87232207892', + 'thumbnail': 're:https?://.*\.jpg', + }, } def _download_webpage(self, url_or_request, video_id, note='Downloading webpage'): |