aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/ehow.py
diff options
context:
space:
mode:
authorM.Yasoob Khalid <yasoob.khld@gmail.com>2013-07-11 14:30:25 +0500
committerM.Yasoob Khalid <yasoob.khld@gmail.com>2013-07-11 14:30:25 +0500
commitb1082f01a681623028a3dc6d2ba0fef6b78a8301 (patch)
treec018672031c3c41be1c2ea2855c1742ac28bb157 /youtube_dl/extractor/ehow.py
parentf35b84c807265f10024e52309b5cac4ca95a9510 (diff)
downloadyoutube-dl-b1082f01a681623028a3dc6d2ba0fef6b78a8301.tar.xz
added test for ehow
Diffstat (limited to 'youtube_dl/extractor/ehow.py')
-rw-r--r--youtube_dl/extractor/ehow.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/youtube_dl/extractor/ehow.py b/youtube_dl/extractor/ehow.py
index 1844d8b00..a664b081a 100644
--- a/youtube_dl/extractor/ehow.py
+++ b/youtube_dl/extractor/ehow.py
@@ -6,11 +6,13 @@ from .common import InfoExtractor
class EhowIE(InfoExtractor):
_VALID_URL = r'(?:http://)?(?:www\.)?ehow\.com/([^/]+)'
_TEST = {
- u'url': u'http://www.break.com/video/when-girls-act-like-guys-2468056',
- u'file': u'2468056.mp4',
- u'md5': u'a3513fb1547fba4fb6cfac1bffc6c46b',
+ u'url': u'http://www.ehow.com/video_12245069_hardwood-flooring-basics.html',
+ u'file': u'12245069.flv',
+ u'md5': u'9809b4e3f115ae2088440bcb4efbf371',
u'info_dict': {
- u"title": u"When Girls Act Like D-Bags"
+ u"title": u"Hardwood Flooring Basics",
+ u"description": u"Hardwood flooring may be time consuming, but its ultimately a pretty straightforward concept. Learn about hardwood flooring basics with help from a hardware flooring business owner in this free video...",
+ u"uploader": u"Erick Nathan"
}
}