summaryrefslogtreecommitdiffstats
path: root/tests/core/test_ld.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/test_ld.py')
-rw-r--r--tests/core/test_ld.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/core/test_ld.py b/tests/core/test_ld.py
new file mode 100644
index 0000000..bb465e1
--- /dev/null
+++ b/tests/core/test_ld.py
@@ -0,0 +1,28 @@
+import datetime
+
+from core.ld import parse_ld_date
+
+
+def test_parse_ld_date():
+ """
+ Tests that the various kinds of LD dates that we see will work
+ """
+ assert parse_ld_date("2022-11-16T15:57:58Z") == datetime.datetime(
+ 2022,
+ 11,
+ 16,
+ 15,
+ 57,
+ 58,
+ tzinfo=datetime.timezone.utc,
+ )
+
+ assert parse_ld_date("2022-11-16T15:57:58.123Z") == datetime.datetime(
+ 2022,
+ 11,
+ 16,
+ 15,
+ 57,
+ 58,
+ tzinfo=datetime.timezone.utc,
+ )