(self)
| 632 | self.assertEqual(ct.tzname(), 'UTC') |
| 633 | |
| 634 | def testEquality(self): |
| 635 | UTC0 = tz.tzutc() |
| 636 | UTC1 = tz.tzutc() |
| 637 | |
| 638 | self.assertEqual(UTC0, UTC1) |
| 639 | |
| 640 | def testInequality(self): |
| 641 | UTC = tz.tzutc() |
nothing calls this directly
no outgoing calls
no test coverage detected