(self)
| 1575 | self.assertEqual(L, iso_long_years) |
| 1576 | |
| 1577 | def test_isoformat(self): |
| 1578 | t = self.theclass(2, 3, 2) |
| 1579 | self.assertEqual(t.isoformat(), "0002-03-02") |
| 1580 | |
| 1581 | def test_ctime(self): |
| 1582 | t = self.theclass(2002, 3, 2) |
nothing calls this directly
no test coverage detected