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