(self)
| 1281 | self.cal.formatmonthname(2017, 5)) |
| 1282 | |
| 1283 | def test_formatmonth(self): |
| 1284 | self.assertIn('class="text-center month"', |
| 1285 | self.cal.formatmonth(2017, 5)) |
| 1286 | |
| 1287 | def test_formatmonth_with_invalid_month(self): |
| 1288 | with self.assertRaises(calendar.IllegalMonthError): |
nothing calls this directly
no test coverage detected