浏览代码

[infoq] move tests

Philipp Hagemeister 12 年之前
父节点
当前提交
9d069c4778
共有 2 个文件被更改,包括 12 次插入12 次删除
  1. 0 12
      test/tests.json
  2. 12 0
      youtube_dl/extractor/infoq.py

+ 0 - 12
test/tests.json

@@ -176,18 +176,6 @@
         "uploader": "Young Americans for Liberty"
         "uploader": "Young Americans for Liberty"
     }
     }
   },
   },
-  {
-    "name": "InfoQ",
-    "url": "http://www.infoq.com/presentations/A-Few-of-My-Favorite-Python-Things",
-    "file": "12-jan-pythonthings.mp4",
-    "info_dict": {
-      "description": "Mike Pirnat presents some tips and tricks, standard libraries and third party packages that make programming in Python a richer experience.",
-      "title": "A Few of My Favorite [Python] Things"
-    },
-    "params": {
-      "skip_download": true
-    }
-  },
   {
   {
     "name": "ComedyCentral",
     "name": "ComedyCentral",
     "url": "http://www.thedailyshow.com/watch/thu-december-13-2012/kristen-stewart",
     "url": "http://www.thedailyshow.com/watch/thu-december-13-2012/kristen-stewart",

+ 12 - 0
youtube_dl/extractor/infoq.py

@@ -11,6 +11,18 @@ from ..utils import (
 
 
 class InfoQIE(InfoExtractor):
 class InfoQIE(InfoExtractor):
     _VALID_URL = r'^(?:https?://)?(?:www\.)?infoq\.com/[^/]+/[^/]+$'
     _VALID_URL = r'^(?:https?://)?(?:www\.)?infoq\.com/[^/]+/[^/]+$'
+    _TEST = {
+        u"name": u"InfoQ",
+        u"url": u"http://www.infoq.com/presentations/A-Few-of-My-Favorite-Python-Things",
+        u"file": u"12-jan-pythonthings.mp4",
+        u"info_dict": {
+            u"description": u"Mike Pirnat presents some tips and tricks, standard libraries and third party packages that make programming in Python a richer experience.",
+            u"title": u"A Few of My Favorite [Python] Things"
+        },
+        u"params": {
+            u"skip_download": true
+        }
+    }
 
 
     def _real_extract(self, url):
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)
         mobj = re.match(self._VALID_URL, url)