(self)
| 280 | zone.fromutc(val) |
| 281 | |
| 282 | def test_utc(self): |
| 283 | zi = self.klass("UTC") |
| 284 | dt = datetime(2020, 1, 1, tzinfo=zi) |
| 285 | |
| 286 | self.assertEqual(dt.utcoffset(), ZERO) |
| 287 | self.assertEqual(dt.dst(), ZERO) |
| 288 | self.assertEqual(dt.tzname(), "UTC") |
| 289 | |
| 290 | def test_unambiguous(self): |
| 291 | test_cases = [] |
nothing calls this directly
no test coverage detected