(self)
| 941 | None) |
| 942 | |
| 943 | def testTimeOnlyDSTLocalUTC(self): |
| 944 | with TZEnvContext(self.UTC): |
| 945 | self.assertEqual(dt_time(13, 20, tzinfo=tz.tzlocal()).dst(), |
| 946 | timedelta(0)) |
| 947 | |
| 948 | def testTimeOnlyDSTLocalDST(self): |
| 949 | with TZEnvContext(self.TZ_EST): |
nothing calls this directly
no test coverage detected