Move tests to the IE definitions

This commit is contained in:
Philipp Hagemeister 2013-06-27 20:46:46 +02:00
parent ddbd903576
commit 6f5ac90cf3
48 changed files with 431 additions and 479 deletions

View file

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