(self)
| 286 | self.assertFalse(dom.childNodes) |
| 287 | |
| 288 | def testContext(self): |
| 289 | with parse(tstfile) as dom: |
| 290 | self.assertTrue(dom.childNodes) |
| 291 | self.assertFalse(dom.childNodes) |
| 292 | |
| 293 | def testElement(self): |
| 294 | dom = Document() |
nothing calls this directly
no test coverage detected