(self)
| 230 | |
| 231 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 232 | def test_parseString_text(self): |
| 233 | encodings = ('us-ascii', 'iso-8859-1', 'utf-8', |
| 234 | 'utf-16', 'utf-16le', 'utf-16be') |
| 235 | for encoding in encodings: |
| 236 | self.check_parseString(xml_str(self.data, encoding)) |
| 237 | self.check_parseString(self.data) |
| 238 | |
| 239 | @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'xmlparser' object has no attribute 'SetParamEntityParsing' |
| 240 | def test_parseString_bytes(self): |
nothing calls this directly
no test coverage detected