(self)
| 291 | self.assertFalse(dom.childNodes) |
| 292 | |
| 293 | def testElement(self): |
| 294 | dom = Document() |
| 295 | dom.appendChild(dom.createElement("abc")) |
| 296 | self.assertTrue(dom.documentElement) |
| 297 | dom.unlink() |
| 298 | |
| 299 | def testAAA(self): |
| 300 | dom = parseString("<abc/>") |
nothing calls this directly
no test coverage detected