diff options
| author | Aurélien Dunand <aurelien@tassatux.net> | 2015-05-04 19:55:29 +0200 | 
|---|---|---|
| committer | Aurélien Dunand <aurelien@tassatux.net> | 2015-05-04 19:55:29 +0200 | 
| commit | ff9d68e7be2dd01a21cc0ed90aaa594b5d36697f (patch) | |
| tree | 8c81de28f9307adb44c39e1badbfaf826e31c9fc | |
| parent | 7212560f4d6b0de5b76eb41090c639855915946e (diff) | |
[noco] Add test for multi languages video
| -rw-r--r-- | youtube_dl/extractor/noco.py | 45 | 
1 files changed, 31 insertions, 14 deletions
diff --git a/youtube_dl/extractor/noco.py b/youtube_dl/extractor/noco.py index 20a658149..f86d210ee 100644 --- a/youtube_dl/extractor/noco.py +++ b/youtube_dl/extractor/noco.py @@ -25,21 +25,38 @@ class NocoIE(InfoExtractor):      _SUB_LANG_TEMPLATE = '&sub_lang=%s'      _NETRC_MACHINE = 'noco' -    _TEST = { -        'url': 'http://noco.tv/emission/11538/nolife/ami-ami-idol-hello-france/', -        'md5': '0a993f0058ddbcd902630b2047ef710e', -        'info_dict': { -            'id': '11538', -            'ext': 'mp4', -            'title': 'Ami Ami Idol - Hello! France', -            'description': 'md5:4eaab46ab68fa4197a317a88a53d3b86', -            'upload_date': '20140412', -            'uploader': 'Nolife', -            'uploader_id': 'NOL', -            'duration': 2851.2, +    _TESTS = [ +        { +            'url': 'http://noco.tv/emission/11538/nolife/ami-ami-idol-hello-france/', +            'md5': '0a993f0058ddbcd902630b2047ef710e', +            'info_dict': { +                'id': '11538', +                'ext': 'mp4', +                'title': 'Ami Ami Idol - Hello! France', +                'description': 'md5:4eaab46ab68fa4197a317a88a53d3b86', +                'upload_date': '20140412', +                'uploader': 'Nolife', +                'uploader_id': 'NOL', +                'duration': 2851.2, +            }, +            'skip': 'Requires noco account',          }, -        'skip': 'Requires noco account', -    } +        { +            'url': 'http://noco.tv/emission/12610/lbl42/the-guild/s01e01-wake-up-call', +            'md5': 'c190f1f48e313c55838f1f412225934d', +            'info_dict': { +                'id': '12610', +                'ext': 'mp4', +                'title': 'The Guild #1 - Wake-Up Call', +                'description': '', +                'upload_date': '20140627', +                'uploader': 'LBL42', +                'uploader_id': 'LBL', +                'duration': 233.023, +            }, +            'skip': 'Requires noco account', +        } +    ]      def _real_initialize(self):          self._login()  | 
