diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-06-26 15:16:49 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-06-26 15:16:49 +0800 |
commit | 1143535d762fc4260aacc108f2c41079867f9f00 (patch) | |
tree | 2cb797f25191ad658652d5d963505462e6ec6833 /test/test_utils.py | |
parent | 7d52c052efe7accf098bca84aef0ea70caa64889 (diff) |
[utils] Add urshift()
Used in IqiyiIE and LeIE
Diffstat (limited to 'test/test_utils.py')
-rw-r--r-- | test/test_utils.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index 7f9385deb..ed61e4c27 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -66,6 +66,7 @@ from youtube_dl.utils import ( lowercase_escape, url_basename, urlencode_postdata, + urshift, update_url_query, version_tuple, xpath_with_ns, @@ -980,5 +981,9 @@ The first line self.assertRaises(ValueError, encode_base_n, 0, 70) self.assertRaises(ValueError, encode_base_n, 0, 60, custom_table) + def test_urshift(self): + self.assertEqual(urshift(3, 1), 1) + self.assertEqual(urshift(-3, 1), 2147483646) + if __name__ == '__main__': unittest.main() |