summaryrefslogtreecommitdiff
path: root/contrib/python/test/test_libs.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/test/test_libs.py')
-rw-r--r--contrib/python/test/test_libs.py19
1 files changed, 13 insertions, 6 deletions
diff --git a/contrib/python/test/test_libs.py b/contrib/python/test/test_libs.py
index e2160fc30..202bed1d8 100644
--- a/contrib/python/test/test_libs.py
+++ b/contrib/python/test/test_libs.py
@@ -18,19 +18,26 @@ class TestLibs(unittest.TestCase):
'2018-05-08T14:12:53.797795191-07:00',
'2018-05-08T14:12:53.797795-07:00',
'2018-05-08T14:12:53.797795-0700',
- '2018-05-08 14:12:53.797795191 -0700 MST'
+ '2018-05-08 14:12:53.797795191 -0700 MST',
]:
actual = podman.datetime_parse(v)
self.assertEqual(actual, expected)
- podman.datetime_parse(datetime.datetime.now().isoformat())
+ expected = datetime.datetime.strptime(
+ '2018-05-08T14:12:53.797795-0000', '%Y-%m-%dT%H:%M:%S.%f%z')
+ for v in [
+ '2018-05-08T14:12:53.797795191Z',
+ '2018-05-08T14:12:53.797795191z',
+ ]:
+ actual = podman.datetime_parse(v)
+ self.assertEqual(actual, expected)
+
+ actual = podman.datetime_parse(datetime.datetime.now().isoformat())
+ self.assertIsNotNone(actual)
def test_parse_fail(self):
- # chronologist humor: '1752-09-05T12:00:00.000000-0000' also not
- # handled correctly by python for my locale.
for v in [
- '1752-9-5',
- '1752-09-05',
+ 'There is no time here.',
]:
with self.assertRaises(ValueError):
podman.datetime_parse(v)