(date_str, expected)
| 110 | datetime(2011, 11, 4, 0, 5, 23, tzinfo=_timezone(timedelta(seconds=14400)))), |
| 111 | ]) |
| 112 | def test_iso8601_string_datetime(date_str, expected): |
| 113 | assert maybe_iso8601(date_str) == expected |
| 114 | |
| 115 | |
| 116 | @pytest.mark.parametrize('arg,expected', [ |
nothing calls this directly
no test coverage detected