(self)
| 1750 | pi.nodeValue = "crash" |
| 1751 | |
| 1752 | def test_minidom_attribute_order(self): |
| 1753 | xml_str = '<?xml version="1.0" ?><curriculum status="public" company="example"/>' |
| 1754 | doc = parseString(xml_str) |
| 1755 | output = io.StringIO() |
| 1756 | doc.writexml(output) |
| 1757 | self.assertEqual(output.getvalue(), xml_str) |
| 1758 | |
| 1759 | def test_toxml_with_attributes_ordered(self): |
| 1760 | xml_str = '<?xml version="1.0" ?><curriculum status="public" company="example"/>' |
nothing calls this directly
no test coverage detected