summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-14 07:21:20 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-14 07:21:20 +0600
commit4479600d57d1a48de5a910764e2d18c30d7a4bd9 (patch)
tree36366f41d67fb2dcc04af07d43a3b3bdda183729
parenta90189c3ad9bab0571121ecb70baea89ccac154e (diff)
downloadyoutube-dl-4479600d57d1a48de5a910764e2d18c30d7a4bd9.tar.gz
youtube-dl-4479600d57d1a48de5a910764e2d18c30d7a4bd9.tar.xz
youtube-dl-4479600d57d1a48de5a910764e2d18c30d7a4bd9.zip
[instagram] Add test for #7497
-rw-r--r--youtube_dl/extractor/instagram.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/extractor/instagram.py b/youtube_dl/extractor/instagram.py
index ddcaf76d1..fce179000 100644
--- a/youtube_dl/extractor/instagram.py
+++ b/youtube_dl/extractor/instagram.py
@@ -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)