(self)
| 997 | self.assertEqual(dom2.count(dom1), 2) |
| 998 | |
| 999 | def test_root_element_escaped_html(self): |
| 1000 | html = "<br>" |
| 1001 | parsed = parse_html(html) |
| 1002 | self.assertEqual(str(parsed), html) |
| 1003 | |
| 1004 | def test_parsing_errors(self): |
| 1005 | with self.assertRaises(AssertionError): |
nothing calls this directly
no test coverage detected