(self)
| 482 | self.assertEqual(out.getvalue(), " 1 2 3 4 5 6 7") |
| 483 | |
| 484 | def test_prmonth(self): |
| 485 | with support.captured_stdout() as out: |
| 486 | calendar.TextCalendar().prmonth(2004, 1) |
| 487 | self.assertEqual(out.getvalue(), result_2004_01_text) |
| 488 | |
| 489 | def test_pryear(self): |
| 490 | with support.captured_stdout() as out: |
nothing calls this directly
no test coverage detected