(self, html)
| 27 | |
| 28 | class TestDocStringParser(unittest.TestCase): |
| 29 | def parse(self, html): |
| 30 | docstring_parser = parser.DocStringParser(ReSTDocument()) |
| 31 | docstring_parser.feed(html) |
| 32 | docstring_parser.close() |
| 33 | return docstring_parser.doc.getvalue() |
| 34 | |
| 35 | def assert_contains_exact_lines_in_order(self, actual, expected): |
| 36 | # Get each line and filter out empty lines |
no test coverage detected