()
| 41 | |
| 42 | |
| 43 | def test_parse_iso8601_invalid_string(): |
| 44 | with pytest.raises(ValueError, match="unable to parse date string"): |
| 45 | parse_iso8601("invalid-date-string") |
| 46 | |
| 47 | |
| 48 | def test_parse_iso8601_malformed_strings(): |
nothing calls this directly
no test coverage detected