(self)
| 326 | |
| 327 | |
| 328 | def test_dst(self): |
| 329 | self.assertIsNone(timezone.utc.dst(self.DT)) |
| 330 | |
| 331 | with self.assertRaises(TypeError): self.EST.dst('') |
| 332 | with self.assertRaises(TypeError): self.EST.dst(5) |
| 333 | |
| 334 | def test_tzname(self): |
| 335 | self.assertEqual('UTC', timezone.utc.tzname(None)) |
nothing calls this directly
no test coverage detected