()
| 396 | |
| 397 | |
| 398 | def test_fixed_timezone(): |
| 399 | tz = fixed_timezone(19800) |
| 400 | tz2 = fixed_timezone(18000) |
| 401 | dt = datetime(2016, 11, 26, tzinfo=tz) |
| 402 | |
| 403 | assert tz2.utcoffset(dt).total_seconds() == 18000 |
| 404 | assert tz2.dst(dt) == timedelta() |
| 405 | |
| 406 | |
| 407 | def test_fixed_equality(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…