(self)
| 487 | self.assertEqual(out.getvalue(), result_2004_01_text) |
| 488 | |
| 489 | def test_pryear(self): |
| 490 | with support.captured_stdout() as out: |
| 491 | calendar.TextCalendar().pryear(2004) |
| 492 | self.assertEqual(out.getvalue(), result_2004_text) |
| 493 | |
| 494 | def test_format(self): |
| 495 | with support.captured_stdout() as out: |
nothing calls this directly
no test coverage detected