(self)
| 931 | self._testDST(self.UTC, timedelta(0)) |
| 932 | |
| 933 | def testTimeOnlyOffsetLocalUTC(self): |
| 934 | with TZEnvContext(self.UTC): |
| 935 | self.assertEqual(dt_time(13, 20, tzinfo=tz.tzlocal()).utcoffset(), |
| 936 | timedelta(0)) |
| 937 | |
| 938 | def testTimeOnlyOffsetLocalDST(self): |
| 939 | with TZEnvContext(self.TZ_EST): |
nothing calls this directly
no test coverage detected