mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-17 18:29:26 +01:00
some changes to keep the same standard
This commit is contained in:
parent
3eec021a1f
commit
137c5803c3
@ -7,15 +7,14 @@
|
|||||||
from youtube_dl.InfoExtractors import YoutubeIE
|
from youtube_dl.InfoExtractors import YoutubeIE
|
||||||
|
|
||||||
class DownloadTest(unittest.TestCase):
|
class DownloadTest(unittest.TestCase):
|
||||||
#calculated with the md5sum utility
|
#calculated with md5sum:
|
||||||
#md5sum (GNU coreutils) 8.19
|
# md5sum (GNU coreutils) 8.19
|
||||||
YOUTUBE_MD5 = "8547978241cb87dd6782b10b8e90acc3"
|
YOUTUBE_MD5 = "8547978241cb87dd6782b10b8e90acc3"
|
||||||
YOUTUBE_URL = "http://www.youtube.com/watch?v=BaW_jenozKc"
|
YOUTUBE_URL = "http://www.youtube.com/watch?v=BaW_jenozKc"
|
||||||
YOUTUBE_FILE = "BaW_jenozKc.flv"
|
YOUTUBE_FILE = "BaW_jenozKc.flv"
|
||||||
|
|
||||||
def test_youtube(self):
|
def test_youtube(self):
|
||||||
#let's download a file from youtube
|
#let's download a file from youtube
|
||||||
global YOUTUBE_URL
|
|
||||||
fd = FileDownloader({})
|
fd = FileDownloader({})
|
||||||
fd.add_info_extractor(YoutubeIE())
|
fd.add_info_extractor(YoutubeIE())
|
||||||
fd.download([DownloadTest.YOUTUBE_URL])
|
fd.download([DownloadTest.YOUTUBE_URL])
|
||||||
|
@ -42,5 +42,3 @@ def test_ordered_set(self):
|
|||||||
|
|
||||||
def test_unescape_html(self):
|
def test_unescape_html(self):
|
||||||
self.assertEqual(unescapeHTML(u"%20;"), u"%20;")
|
self.assertEqual(unescapeHTML(u"%20;"), u"%20;")
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user