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

Method testBug1433694

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

Source from the content-addressed store, hash-verified

1212 doc.unlink()
1213
1214 def testBug1433694(self):
1215 doc = parseString("<o><i/>t</o>")
1216 node = doc.documentElement
1217 node.childNodes[1].nodeValue = ""
1218 node.normalize()
1219 self.assertIsNone(node.childNodes[-1].nextSibling,
1220 "Final child's .nextSibling should be None")
1221
1222 @unittest.expectedFailure # TODO: RUSTPYTHON
1223 def testSiblings(self):

Callers

nothing calls this directly

Calls 3

parseStringFunction · 0.90
assertIsNoneMethod · 0.80
normalizeMethod · 0.45

Tested by

no test coverage detected