mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-04 10:02:48 +01:00
Added test for dump.com
This commit is contained in:
parent
76beff70a8
commit
83d35817f5
@ -11,6 +11,15 @@ from ..utils import (
|
||||
class DumpIE(InfoExtractor):
|
||||
_VALID_URL = r'^https?://(?:www\.)?dump\.com/(?P<id>[a-zA-Z0-9]+)/'
|
||||
|
||||
_TEST = {
|
||||
u'url': u'http://www.dump.com/oneus/',
|
||||
u'file': u'oneus.flv',
|
||||
u'md5': u'ad71704d1e67dfd9e81e3e8b42d69d99',
|
||||
u'info_dict': {
|
||||
u"title": u"He's one of us.",
|
||||
},
|
||||
}
|
||||
|
||||
def _real_extract(self, url):
|
||||
m = re.match(self._VALID_URL, url)
|
||||
video_id = m.group('id')
|
||||
|
Loading…
Reference in New Issue
Block a user