(self, a, b)
| 6657 | self.skipTest("Skipping %s: %s" % (self.zonename, err)) |
| 6658 | |
| 6659 | def assertEquivDatetimes(self, a, b): |
| 6660 | self.assertEqual((a.replace(tzinfo=None), a.fold, id(a.tzinfo)), |
| 6661 | (b.replace(tzinfo=None), b.fold, id(b.tzinfo))) |
| 6662 | |
| 6663 | def test_folds(self): |
| 6664 | tz = self.tz |
no test coverage detected