Move tests to the IE definitions
This commit is contained in:
parent
ddbd903576
commit
6f5ac90cf3
48 changed files with 431 additions and 479 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue