[utils] Improve unified_timestamp

Seen at http://zaq1.pl/video/xev0e
This commit is contained in:
Sergey M․ 2017-04-30 21:07:30 +07:00
parent 9dac2cec2d
commit deef31955b
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D
2 changed files with 6 additions and 0 deletions

View file

@ -338,6 +338,7 @@ class TestUtil(unittest.TestCase):
self.assertEqual(unified_timestamp('UNKNOWN DATE FORMAT'), None)
self.assertEqual(unified_timestamp('May 16, 2016 11:15 PM'), 1463440500)
self.assertEqual(unified_timestamp('Feb 7, 2016 at 6:35 pm'), 1454870100)
self.assertEqual(unified_timestamp('2017-03-30T17:52:41Q'), 1490896361)
def test_determine_ext(self):
self.assertEqual(determine_ext('http://example.com/foo/bar.mp4/?download'), 'mp4')