1
0
Fork 0

Update to ytdl-commit-78ce962

[youtube] Support channel search
78ce962f4f
This commit is contained in:
pukkandan 2022-02-03 21:21:42 +05:30
commit d5a398988b
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
6 changed files with 22 additions and 30 deletions

View file

@ -120,10 +120,17 @@ class TestPlayerInfo(unittest.TestCase):
class TestSignature(unittest.TestCase):
def setUp(self):
TEST_DIR = os.path.dirname(os.path.abspath(__file__))
self.TESTDATA_DIR = os.path.join(TEST_DIR, 'testdata')
self.TESTDATA_DIR = os.path.join(TEST_DIR, 'testdata/sigs')
if not os.path.exists(self.TESTDATA_DIR):
os.mkdir(self.TESTDATA_DIR)
def tearDown(self):
try:
for f in os.listdir(self.TESTDATA_DIR):
os.remove(f)
except OSError:
pass
def t_factory(name, sig_func, url_pattern):
def make_tfunc(url, sig_input, expected_sig):