(self)
| 436 | ) |
| 437 | |
| 438 | def test_formatweekheader_short(self): |
| 439 | self.assertEqual( |
| 440 | calendar.TextCalendar().formatweekheader(2), |
| 441 | 'Mo Tu We Th Fr Sa Su' |
| 442 | ) |
| 443 | |
| 444 | def test_formatweekheader_long(self): |
| 445 | self.assertEqual( |
nothing calls this directly
no test coverage detected