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