(dstr, expected)
| 218 | datetime(2003, 9, 25, 10, 49, 41, 500000, tzinfo=_brsttz)), |
| 219 | ]) |
| 220 | def test_parse_with_tzoffset(dstr, expected): |
| 221 | # In these cases, we are _not_ passing a tzinfos arg |
| 222 | result = parse(dstr) |
| 223 | assert result == expected |
| 224 | |
| 225 | |
| 226 | class TestFormat(object): |