""" Mike Brown reported a problem with minidom and children nodes """ from Xml.Xslt import test_harness source_1=""" """ sheet_1 = """ total nodes: copy: """ expected = """ total nodes: 15 copy: """ def Test(tester): source = test_harness.FileInfo(string=source_1) sheet = test_harness.FileInfo(string=sheet_1) test_harness.XsltTest(tester, source, [sheet], expected, title='Descendants of different node types') return