(self)
| 525 | self.assertEqual(out.getvalue(), result_2004_01_text) |
| 526 | |
| 527 | def test_pryear(self): |
| 528 | with support.captured_stdout() as out: |
| 529 | calendar.TextCalendar().pryear(2004) |
| 530 | self.assertEqual(out.getvalue(), result_2004_text) |
| 531 | |
| 532 | def test_format(self): |
| 533 | with support.captured_stdout() as out: |
nothing calls this directly
no test coverage detected