(self)
| 555 | |
| 556 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 557 | def testWriteXML(self): |
| 558 | str = '<?xml version="1.0" ?><a b="c"/>' |
| 559 | dom = parseString(str) |
| 560 | domstr = dom.toxml() |
| 561 | dom.unlink() |
| 562 | self.assertEqual(str, domstr) |
| 563 | |
| 564 | def test_toxml_quote_text(self): |
| 565 | dom = Document() |
nothing calls this directly
no test coverage detected