mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-06-30 19:12:49 -05:00
Move tests to the IE definitions
This commit is contained in:
@ -8,6 +8,14 @@ from ..utils import (
|
||||
|
||||
class TumblrIE(InfoExtractor):
|
||||
_VALID_URL = r'http://(?P<blog_name>.*?)\.tumblr\.com/((post)|(video))/(?P<id>\d*)/(.*?)'
|
||||
_TEST = {
|
||||
u'url': u'http://resigno.tumblr.com/post/53364321212/e-de-extrema-importancia-que-esse-video-seja',
|
||||
u'file': u'53364321212.mp4',
|
||||
u'md5': u'0716d3dd51baf68a28b40fdf1251494e',
|
||||
u'info_dict': {
|
||||
u"title": u"Rafael Lemos | Tumblr"
|
||||
}
|
||||
}
|
||||
|
||||
def _real_extract(self, url):
|
||||
m_url = re.match(self._VALID_URL, url)
|
||||
|
Reference in New Issue
Block a user