Move tests to the IE definitions
[youtube-dl] / youtube_dl / extractor / tumblr.py
index b0851b4f9cd360fc8d4ba58c725c7b04d4708c50..618199d6b93f6ab86ad24d3c3d846c8df357c2c3 100644 (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)