Skip to content

Commit

Permalink
@GitHK review: add more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Mar 23, 2023
1 parent e28df2e commit 86b0918
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/service-library/tests/test_docker_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@
"2020-10-09T12:28:14.771034099Z",
datetime(2020, 10, 9, 12, 28, 14, 771034, tzinfo=timezone.utc),
),
(
"2020-10-09T12:28:14.123456099Z",
datetime(2020, 10, 9, 12, 28, 14, 123456, tzinfo=timezone.utc),
),
(
"2020-10-09T12:28:14.12345Z",
datetime(2020, 10, 9, 12, 28, 14, 123450, tzinfo=timezone.utc),
),
(
"2023-03-15 13:01:21.774501",
datetime(2023, 3, 15, 13, 1, 21, 774501, tzinfo=timezone.utc),
),
(f"{NOW}", NOW),
(NOW.strftime("%Y-%m-%dT%H:%M:%S.%f"), NOW),
],
Expand Down

0 comments on commit 86b0918

Please sign in to comment.