(self)
| 1301 | self.assertIn('<th class="%s">' % color, header) |
| 1302 | |
| 1303 | def test_format_year(self): |
| 1304 | self.assertIn( |
| 1305 | ('<table class="%s">' % |
| 1306 | self.cal.cssclass_year), self.cal.formatyear(2017)) |
| 1307 | |
| 1308 | def test_format_year_head(self): |
| 1309 | self.assertIn('<tr><th colspan="%d" class="%s">%s</th></tr>' % ( |
nothing calls this directly
no test coverage detected