(self)
| 1743 | self.assertEqual(num_children_after, num_children_before - 1) |
| 1744 | |
| 1745 | def testProcessingInstructionNameError(self): |
| 1746 | # wrong variable in .nodeValue property will |
| 1747 | # lead to "NameError: name 'data' is not defined" |
| 1748 | doc = parse(tstfile) |
| 1749 | pi = doc.createProcessingInstruction("y", "z") |
| 1750 | pi.nodeValue = "crash" |
| 1751 | |
| 1752 | def test_minidom_attribute_order(self): |
| 1753 | xml_str = '<?xml version="1.0" ?><curriculum status="public" company="example"/>' |
nothing calls this directly
no test coverage detected