(self)
| 520 | doc, "http://somewhere.else.net/not-there", "e") |
| 521 | |
| 522 | def testElementReprAndStr(self): |
| 523 | dom = Document() |
| 524 | el = dom.appendChild(dom.createElement("abc")) |
| 525 | string1 = repr(el) |
| 526 | string2 = str(el) |
| 527 | self.assertEqual(string1, string2) |
| 528 | dom.unlink() |
| 529 | |
| 530 | def testElementReprAndStrUnicode(self): |
| 531 | dom = Document() |
nothing calls this directly
no test coverage detected