Update the test suite to cover more ground.

This closes patch #102477.
This commit is contained in:
Fred Drake 2000-12-14 18:20:22 +00:00
parent f7cf40d331
commit 3277da0f33
2 changed files with 9 additions and 0 deletions

View File

@ -127,6 +127,7 @@ Test Succeeded testNonZero
Passed assertion: len(Node.allnodes) == 0
Passed testNormalize -- preparation
Passed testNormalize -- result
Passed testNormalize -- single empty node removed
Test Succeeded testNormalize
Passed assertion: len(Node.allnodes) == 0
Passed testParents

View File

@ -397,6 +397,14 @@ def testNormalize():
, "testNormalize -- result")
doc.unlink()
doc = parseString("<doc/>")
root = doc.documentElement
root.appendChild(doc.createTextNode(""))
doc.normalize()
confirm(len(root.childNodes) == 0,
"testNormalize -- single empty node removed")
doc.unlink()
def testSiblings():
doc = parseString("<doc><?pi?>text?<elm/></doc>")
root = doc.documentElement