[instagram] Add test for #7497
authorSergey M․ <dstftw@gmail.com>
Sat, 14 Nov 2015 01:21:20 +0000 (07:21 +0600)
committerSergey M․ <dstftw@gmail.com>
Sat, 14 Nov 2015 01:21:20 +0000 (07:21 +0600)
youtube_dl/extractor/instagram.py

index ddcaf76d11ec5c5b7e2ef05fb76afd1b804391df..fce179000786cfeacad39d9d65786aa9fea915b1 100644 (file)
@@ -11,7 +11,7 @@ from ..utils import (
 
 class InstagramIE(InfoExtractor):
     _VALID_URL = r'https://instagram\.com/p/(?P<id>[^/?#&]+)'
-    _TEST = {
+    _TESTS = [{
         'url': 'https://instagram.com/p/aye83DjauH/?foo=bar#abc',
         'md5': '0d2da106a9d2631273e192b372806516',
         'info_dict': {
@@ -21,7 +21,10 @@ class InstagramIE(InfoExtractor):
             'title': 'Video by naomipq',
             'description': 'md5:1f17f0ab29bd6fe2bfad705f58de3cb8',
         }
-    }
+    }, {
+        'url': 'https://instagram.com/p/-Cmh1cukG2/',
+        'only_matching': True,
+    }]
 
     def _real_extract(self, url):
         video_id = self._match_id(url)