(self)
| 309 | dom.unlink() |
| 310 | |
| 311 | def testAAB(self): |
| 312 | dom = parseString("<abc/>") |
| 313 | el = dom.documentElement |
| 314 | el.setAttribute("spam", "jam") |
| 315 | el.setAttribute("spam", "jam2") |
| 316 | self.assertEqual(el.toxml(), '<abc spam="jam2"/>', "testAAB") |
| 317 | dom.unlink() |
| 318 | |
| 319 | def testAddAttr(self): |
| 320 | dom = Document() |
nothing calls this directly
no test coverage detected