From d5611eee6297e37258f8fa4691307a4ba9707676 Mon Sep 17 00:00:00 2001 From: huangtiande Date: Fri, 8 Jan 2016 09:26:24 +0800 Subject: [PATCH] add test case --- youtube_dl/extractor/ifeng.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/youtube_dl/extractor/ifeng.py b/youtube_dl/extractor/ifeng.py index 394a36ccd..1663b726b 100644 --- a/youtube_dl/extractor/ifeng.py +++ b/youtube_dl/extractor/ifeng.py @@ -3,6 +3,7 @@ from __future__ import unicode_literals from .common import InfoExtractor + class IfengIE(InfoExtractor): IE_NAME = 'ifeng' IE_DESC = '凤凰网' @@ -24,6 +25,14 @@ class IfengIE(InfoExtractor): 'ext': 'mp4', 'title': '陈羽凡锁骨骨折 盼早日康复', }, + }, + { + 'url': 'http://v.ifeng.com/mil/mainland/201601/01168f8e-bcd5-459b-91b4-f85893b3e40a.shtml', + 'info_dict': { + 'id': '01168f8e-bcd5-459b-91b4-f85893b3e40a', + 'ext': 'mp4', + 'title': '2015年中美两国组织多次演练', + }, } ]