(self)
| 65 | self.assertFalse(Document.async_) |
| 66 | |
| 67 | def testParseFromBinaryFile(self): |
| 68 | with open(tstfile, 'rb') as file: |
| 69 | dom = parse(file) |
| 70 | dom.unlink() |
| 71 | self.assertIsInstance(dom, Document) |
| 72 | |
| 73 | def testParseFromTextFile(self): |
| 74 | with open(tstfile, 'r', encoding='iso-8859-1') as file: |
nothing calls this directly
no test coverage detected