mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
[tests] implement 'len:'
This commit is contained in:
parent
a1977a698e
commit
9bc5ad4784
@ -201,6 +201,9 @@ class TestExtractorResults(unittest.TestCase):
|
||||
self.assertEqual(str(value), test[3:], msg=key)
|
||||
elif test.startswith("type:"):
|
||||
self.assertEqual(type(value).__name__, test[5:], msg=key)
|
||||
elif test.startswith("len:"):
|
||||
self.assertIsInstance(value, (list, tuple), msg=key)
|
||||
self.assertEqual(len(value), int(test[4:]), msg=key)
|
||||
else:
|
||||
self.assertEqual(value, test, msg=key)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user