(self)
| 2614 | self.assertEqual(expected.tm_sec, got.second) |
| 2615 | |
| 2616 | def test_fromtimestamp(self): |
| 2617 | import time |
| 2618 | |
| 2619 | ts = time.time() |
| 2620 | expected = time.localtime(ts) |
| 2621 | got = self.theclass.fromtimestamp(ts) |
| 2622 | self.verify_field_equality(expected, got) |
| 2623 | |
| 2624 | def test_fromtimestamp_keyword_arg(self): |
| 2625 | import time |
nothing calls this directly
no test coverage detected