(self)
| 1097 | |
| 1098 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 1099 | def test_expat_attrs_wattr(self): |
| 1100 | parser = create_parser() |
| 1101 | gather = self.AttrGatherer() |
| 1102 | parser.setContentHandler(gather) |
| 1103 | |
| 1104 | parser.feed("<doc attr='val'/>") |
| 1105 | parser.close() |
| 1106 | |
| 1107 | self.verify_attrs_wattr(gather._attrs) |
| 1108 | |
| 1109 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 1110 | def test_expat_nsattrs_empty(self): |
nothing calls this directly
no test coverage detected