(self)
| 535 | self.assertEqual(out.getvalue().strip(), "1 2 3") |
| 536 | |
| 537 | def test_format_html_year_with_month(self): |
| 538 | self.assertEqual( |
| 539 | calendar.HTMLCalendar().formatmonthpage(2009, 6).decode("ascii"), |
| 540 | result_2009_6_html |
| 541 | ) |
| 542 | |
| 543 | |
| 544 | class CalendarTestCase(unittest.TestCase): |
nothing calls this directly
no test coverage detected