(self)
| 1167 | self.assertIn('class="wed text-nowrap"', self.cal.formatweek(weeks[0])) |
| 1168 | |
| 1169 | def test_formatweek_head(self): |
| 1170 | header = self.cal.formatweekheader() |
| 1171 | for color in self.cal.cssclasses_weekday_head: |
| 1172 | self.assertIn('<th class="%s">' % color, header) |
| 1173 | |
| 1174 | def test_format_year(self): |
| 1175 | self.assertIn( |
nothing calls this directly
no test coverage detected