(self)
| 1580 | self.assertEqual(L, iso_long_years) |
| 1581 | |
| 1582 | def test_isoformat(self): |
| 1583 | t = self.theclass(2, 3, 2) |
| 1584 | self.assertEqual(t.isoformat(), "0002-03-02") |
| 1585 | |
| 1586 | def test_ctime(self): |
| 1587 | t = self.theclass(2002, 3, 2) |
nothing calls this directly
no test coverage detected