(self)
| 529 | dom.unlink() |
| 530 | |
| 531 | def testElementReprAndStrUnicode(self): |
| 532 | dom = Document() |
| 533 | el = dom.appendChild(dom.createElement("abc")) |
| 534 | string1 = repr(el) |
| 535 | string2 = str(el) |
| 536 | self.assertEqual(string1, string2) |
| 537 | dom.unlink() |
| 538 | |
| 539 | def testElementReprAndStrUnicodeNS(self): |
| 540 | dom = Document() |
nothing calls this directly
no test coverage detected