(self)
| 514 | ) |
| 515 | |
| 516 | def test_prweek(self): |
| 517 | with support.captured_stdout() as out: |
| 518 | week = [(1,0), (2,1), (3,2), (4,3), (5,4), (6,5), (7,6)] |
| 519 | calendar.TextCalendar().prweek(week, 1) |
| 520 | self.assertEqual(out.getvalue(), " 1 2 3 4 5 6 7") |
| 521 | |
| 522 | def test_prmonth(self): |
| 523 | with support.captured_stdout() as out: |
nothing calls this directly
no test coverage detected