diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-04-07 21:01:35 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-04-07 21:01:35 +0600 | 
| commit | a35099bd331e42d96e647865f4a644b217bba62a (patch) | |
| tree | fd12f425d063c4bb0700bba2d62177baf64c0e14 | |
| parent | 5f4b5cf044cff5263fa062596ace6180d42a4534 (diff) | |
[addanime] Add test for #5372
| -rw-r--r-- | youtube_dl/extractor/addanime.py | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/extractor/addanime.py b/youtube_dl/extractor/addanime.py index 28180bc3f..e3e6d2113 100644 --- a/youtube_dl/extractor/addanime.py +++ b/youtube_dl/extractor/addanime.py @@ -17,7 +17,7 @@ from ..utils import (  class AddAnimeIE(InfoExtractor):      _VALID_URL = r'http://(?:\w+\.)?add-anime\.net/(?:watch_video\.php\?(?:.*?)v=|video/)(?P<id>[\w_]+)' -    _TEST = { +    _TESTS = [{          'url': 'http://www.add-anime.net/watch_video.php?v=24MR3YO5SAS9',          'md5': '72954ea10bc979ab5e2eb288b21425a0',          'info_dict': { @@ -26,7 +26,10 @@ class AddAnimeIE(InfoExtractor):              'description': 'One Piece 606',              'title': 'One Piece 606',          } -    } +    }, { +        'url': 'http://add-anime.net/video/MDUGWYKNGBD8/One-Piece-687', +        'only_matching': True, +    }]      def _real_extract(self, url):          video_id = self._match_id(url)  | 
