(self)
| 82 | self.assertHTMLEqual(description_output, description_rendered) |
| 83 | |
| 84 | def test_initial_header_level(self): |
| 85 | header = "should be h3...\n\nHeader\n------\n" |
| 86 | output = parse_rst(header, "header") |
| 87 | self.assertIn("<h3>Header</h3>", output) |
| 88 | |
| 89 | def test_parse_rst(self): |
| 90 | """ |
nothing calls this directly
no test coverage detected