(self, a, b)
| 6844 | self.skipTest("Skipping %s: %s" % (self.zonename, err)) |
| 6845 | |
| 6846 | def assertEquivDatetimes(self, a, b): |
| 6847 | self.assertEqual((a.replace(tzinfo=None), a.fold, id(a.tzinfo)), |
| 6848 | (b.replace(tzinfo=None), b.fold, id(b.tzinfo))) |
| 6849 | |
| 6850 | def test_folds(self): |
| 6851 | tz = self.tz |
no test coverage detected