(self)
| 392 | dom.unlink() |
| 393 | |
| 394 | def testHasAttribute(self): |
| 395 | dom = Document() |
| 396 | child = dom.appendChild(dom.createElement("foo")) |
| 397 | child.setAttribute("spam", "jam") |
| 398 | self.assertTrue(child.hasAttribute("spam")) |
| 399 | |
| 400 | def testChangeAttr(self): |
| 401 | dom = parseString("<abc/>") |
nothing calls this directly
no test coverage detected