(self)
| 502 | calendar.TextCalendar().formatmonth(2017, -1) |
| 503 | |
| 504 | def test_formatmonthname_with_year(self): |
| 505 | self.assertEqual( |
| 506 | calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=True), |
| 507 | '<tr><th colspan="7" class="month">January 2004</th></tr>' |
| 508 | ) |
| 509 | |
| 510 | def test_formatmonthname_without_year(self): |
| 511 | self.assertEqual( |
nothing calls this directly
no test coverage detected