(self, node, s)
| 56 | self.assertTrue(test, testname) |
| 57 | |
| 58 | def checkWholeText(self, node, s): |
| 59 | t = node.wholeText |
| 60 | self.assertEqual(t, s, "looking for %r, found %r" % (s, t)) |
| 61 | |
| 62 | def testDocumentAsyncAttr(self): |
| 63 | doc = Document() |
no test coverage detected