(self)
| 1191 | |
| 1192 | |
| 1193 | def testBug0777884(self): |
| 1194 | doc = parseString("<o>text</o>") |
| 1195 | text = doc.documentElement.childNodes[0] |
| 1196 | self.assertEqual(text.nodeType, Node.TEXT_NODE) |
| 1197 | # Should run quietly, doing nothing. |
| 1198 | text.normalize() |
| 1199 | doc.unlink() |
| 1200 | |
| 1201 | def testBug1433694(self): |
| 1202 | doc = parseString("<o><i/>t</o>") |
nothing calls this directly
no test coverage detected