[utils] Remove url_infer_protocol
This commit is contained in:
parent
a662163fd5
commit
0a1603634b
4 changed files with 4 additions and 23 deletions
|
@ -53,7 +53,6 @@ from youtube_dl.utils import (
|
|||
uppercase_escape,
|
||||
url_basename,
|
||||
urlencode_postdata,
|
||||
url_infer_protocol,
|
||||
version_tuple,
|
||||
xpath_with_ns,
|
||||
xpath_text,
|
||||
|
@ -297,10 +296,6 @@ class TestUtil(unittest.TestCase):
|
|||
url_basename('http://media.w3.org/2010/05/sintel/trailer.mp4'),
|
||||
'trailer.mp4')
|
||||
|
||||
def test_url_infer_protocol(self):
|
||||
self.assertEqual(url_infer_protocol('http://foo.com/', '//bar.com/'), 'http://bar.com/')
|
||||
self.assertEqual(url_infer_protocol('http://foo.com/', 'https://bar.com/'), 'https://bar.com/')
|
||||
|
||||
def test_parse_duration(self):
|
||||
self.assertEqual(parse_duration(None), None)
|
||||
self.assertEqual(parse_duration(False), None)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue