Update to ytdl-commit-78ce962
[youtube] Support channel search
78ce962f4f
This commit is contained in:
parent
455a15e2dc
commit
d5a398988b
6 changed files with 22 additions and 30 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue