(self)
| 736 | self.assertEqual(dt.dst(), offset.dst) |
| 737 | |
| 738 | def test_empty_zone(self): |
| 739 | zf = self.construct_zone([], "") |
| 740 | |
| 741 | with self.assertRaises(ValueError): |
| 742 | self.klass.from_file(zf) |
| 743 | |
| 744 | def test_invalid_transition_index(self): |
| 745 | STD = ZoneOffset("STD", ZERO) |
nothing calls this directly
no test coverage detected