()
| 7 | |
| 8 | |
| 9 | def test_parse_iso8601_utc(): |
| 10 | dt = parse_iso8601("2023-10-26T10:30:00Z") |
| 11 | assert dt == datetime(2023, 10, 26, 10, 30, 0, tzinfo=timezone.utc) |
| 12 | |
| 13 | |
| 14 | def test_parse_iso8601_positive_offset(): |
nothing calls this directly
no test coverage detected