(self)
| 273 | dom.unlink() |
| 274 | |
| 275 | def testNonZero(self): |
| 276 | dom = parse(tstfile) |
| 277 | self.assertTrue(dom) # should not be zero |
| 278 | dom.appendChild(dom.createComment("foo")) |
| 279 | self.assertFalse(dom.childNodes[-1].childNodes) |
| 280 | dom.unlink() |
| 281 | |
| 282 | def testUnlink(self): |
| 283 | dom = parse(tstfile) |
nothing calls this directly
no test coverage detected