(self)
| 474 | ) |
| 475 | |
| 476 | def test_formatweekheader_short(self): |
| 477 | self.assertEqual( |
| 478 | calendar.TextCalendar().formatweekheader(2), |
| 479 | 'Mo Tu We Th Fr Sa Su' |
| 480 | ) |
| 481 | |
| 482 | def test_formatweekheader_long(self): |
| 483 | self.assertEqual( |
nothing calls this directly
no test coverage detected