[appletrailers] Add test (#5027)
authorSergey M․ <dstftw@gmail.com>
Sun, 22 Feb 2015 13:58:39 +0000 (19:58 +0600)
committerSergey M․ <dstftw@gmail.com>
Sun, 22 Feb 2015 13:58:39 +0000 (19:58 +0600)
youtube_dl/extractor/appletrailers.py

index 9c718ea661c5916eb6ac72a94815de20fcf62c23..576f03b5b71115771555e1d8d46f4a108eb9de93 100644 (file)
@@ -12,7 +12,7 @@ from ..utils import (
 
 class AppleTrailersIE(InfoExtractor):
     _VALID_URL = r'https?://(?:www\.)?trailers\.apple\.com/(?:trailers|ca)/(?P<company>[^/]+)/(?P<movie>[^/]+)'
-    _TEST = {
+    _TESTS = [{
         "url": "http://trailers.apple.com/trailers/wb/manofsteel/",
         'info_dict': {
             'id': 'manofsteel',
@@ -63,7 +63,10 @@ class AppleTrailersIE(InfoExtractor):
                 },
             },
         ]
-    }
+    }, {
+        'url': 'http://trailers.apple.com/ca/metropole/autrui/',
+        'only_matching': True,
+    }]
 
     _JSON_RE = r'iTunes.playURL\((.*?)\);'