(self)
| 43 | contents = contents[beginning:] |
| 44 | |
| 45 | def test_nested_lists(self): |
| 46 | html = "<ul><li>Wello</li><ul><li>Horld</li></ul></ul>" |
| 47 | result = self.parse(html) |
| 48 | self.assert_contains_exact_lines_in_order( |
| 49 | result, [b'* Wello', b' * Horld'] |
| 50 | ) |
| 51 | |
| 52 | def test_nested_lists_with_extra_white_space(self): |
| 53 | html = "<ul> <li> Wello</li><ul> <li> Horld</li></ul></ul>" |
nothing calls this directly
no test coverage detected