(dt)
| 67 | |
| 68 | @given(dt=datetimes()) |
| 69 | def test_iso8601_decode(dt): |
| 70 | iso = dt.isoformat() |
| 71 | with warnings.catch_warnings(): |
| 72 | warnings.filterwarnings("ignore", message=".*date/calendar/year zero.*") |
| 73 | parsed, _ = _parse_iso8601(type(dt), iso) |
| 74 | assert dt == parsed |
nothing calls this directly
no test coverage detected
searching dependent graphs…