1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-25 21:29:35 +00:00

Added test for dump.com

This commit is contained in:
M.Yasoob Ullah Khalid ☺ 2014-08-22 01:31:12 +05:00
parent 76beff70a8
commit 83d35817f5

View file

@ -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')