(self)
| 60 | self.assertEqual(t, s, "looking for %r, found %r" % (s, t)) |
| 61 | |
| 62 | def testDocumentAsyncAttr(self): |
| 63 | doc = Document() |
| 64 | self.assertFalse(doc.async_) |
| 65 | self.assertFalse(Document.async_) |
| 66 | |
| 67 | def testParseFromBinaryFile(self): |
| 68 | with open(tstfile, 'rb') as file: |
nothing calls this directly
no test coverage detected