(self)
| 1172 | self.assertIn('<th class="%s">' % color, header) |
| 1173 | |
| 1174 | def test_format_year(self): |
| 1175 | self.assertIn( |
| 1176 | ('<table border="0" cellpadding="0" cellspacing="0" class="%s">' % |
| 1177 | self.cal.cssclass_year), self.cal.formatyear(2017)) |
| 1178 | |
| 1179 | def test_format_year_head(self): |
| 1180 | self.assertIn('<tr><th colspan="%d" class="%s">%s</th></tr>' % ( |
nothing calls this directly
no test coverage detected