(self)
| 1086 | |
| 1087 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 1088 | def test_expat_attrs_empty(self): |
| 1089 | parser = create_parser() |
| 1090 | gather = self.AttrGatherer() |
| 1091 | parser.setContentHandler(gather) |
| 1092 | |
| 1093 | parser.feed("<doc/>") |
| 1094 | parser.close() |
| 1095 | |
| 1096 | self.verify_empty_attrs(gather._attrs) |
| 1097 | |
| 1098 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 1099 | def test_expat_attrs_wattr(self): |
nothing calls this directly
no test coverage detected