(self)
| 834 | self.assertEqual(str(parse_html(html2)), '<input value="">') |
| 835 | |
| 836 | def test_normalize_refs(self): |
| 837 | pairs = [ |
| 838 | ("'", "'"), |
| 839 | ("'", "'"), |
| 840 | ("'", "'"), |
| 841 | ("'", "'"), |
| 842 | ("'", "'"), |
| 843 | ("'", "'"), |
| 844 | ("&", "&"), |
| 845 | ("&", "&"), |
| 846 | ("&", "&"), |
| 847 | ("&", "&"), |
| 848 | ("&", "&"), |
| 849 | ("&", "&"), |
| 850 | ("&", "&"), |
| 851 | ("&", "&"), |
| 852 | ("&", "&"), |
| 853 | ("&", "&"), |
| 854 | ("&", "&"), |
| 855 | ("&", "&"), |
| 856 | ] |
| 857 | for pair in pairs: |
| 858 | with self.subTest(repr(pair)): |
| 859 | self.assertHTMLEqual(*pair) |
| 860 | |
| 861 | def test_complex_examples(self): |
| 862 | self.assertHTMLEqual( |
nothing calls this directly
no test coverage detected