Home | History | Annotate | Download | only in test

Lines Matching refs:toxml

81                 and root.toxml() == "<doc><element/><foo/></doc>"

93 and root.toxml() == "<doc><element/><foo/><element/></doc>"
105 and root.toxml() ==
224 self.confirm(el.toxml() == '<abc spam="jam2"/>', "testAAA")
237 self.confirm(el.toxml() == '<abc spam="jam2"/>', "testAAB")
431 domstr = dom.toxml()
575 and clone.toxml() == '<doc attr="value"/>'
584 and clone.toxml() == '<doc attr="value"><foo/></doc>'
1022 self.confirm(doc.toxml() == u'<?xml version="1.0" ?><foo>\u20ac</foo>'
1023 and doc.toxml('utf-8') ==
1025 and doc.toxml('iso-8859-15') ==
1464 self.assertRaises(ValueError, doc.toxml)
1469 doc2 = parseString(doc.toxml())