(self)
| 863 | self.assertEqual(repr(val), repr(expected)) |
| 864 | |
| 865 | def test_xhtml_namespace_html_parser(self): |
| 866 | expected = 'What' |
| 867 | d = pq(self.xhtml, parser='html') |
| 868 | d.xhtml_to_html() |
| 869 | val = d('div').text() |
| 870 | self.assertEqual(repr(val), repr(expected)) |
| 871 | |
| 872 | def test_remove_namespaces(self): |
| 873 | expected = 'What' |
nothing calls this directly
no test coverage detected