(self)
| 1296 | self.assertIn('class="wed text-nowrap"', self.cal.formatweek(weeks[0])) |
| 1297 | |
| 1298 | def test_formatweek_head(self): |
| 1299 | header = self.cal.formatweekheader() |
| 1300 | for color in self.cal.cssclasses_weekday_head: |
| 1301 | self.assertIn('<th class="%s">' % color, header) |
| 1302 | |
| 1303 | def test_format_year(self): |
| 1304 | self.assertIn( |
nothing calls this directly
no test coverage detected