MCPcopy Index your code
hub / github.com/RustPython/RustPython / testWriteXML

Method testWriteXML

Lib/test/test_minidom.py:557–562  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 4

parseStringFunction · 0.90
toxmlMethod · 0.80
unlinkMethod · 0.45
assertEqualMethod · 0.45

Tested by

no test coverage detected