(self)
| 1108 | |
| 1109 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 1110 | def test_expat_nsattrs_empty(self): |
| 1111 | parser = create_parser(1) |
| 1112 | gather = self.AttrGatherer() |
| 1113 | parser.setContentHandler(gather) |
| 1114 | |
| 1115 | parser.feed("<doc/>") |
| 1116 | parser.close() |
| 1117 | |
| 1118 | self.verify_empty_nsattrs(gather._attrs) |
| 1119 | |
| 1120 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 1121 | def test_expat_nsattrs_wattr(self): |
nothing calls this directly
no test coverage detected