(self)
| 702 | def testAttrListKeysNS(self): pass |
| 703 | |
| 704 | def testRemoveNamedItem(self): |
| 705 | doc = parseString("<doc a=''/>") |
| 706 | e = doc.documentElement |
| 707 | attrs = e.attributes |
| 708 | a1 = e.getAttributeNode("a") |
| 709 | a2 = attrs.removeNamedItem("a") |
| 710 | self.assertTrue(a1.isSameNode(a2)) |
| 711 | self.assertRaises(xml.dom.NotFoundErr, attrs.removeNamedItem, "a") |
| 712 | |
| 713 | def testRemoveNamedItemNS(self): |
| 714 | doc = parseString("<doc xmlns:a='http://xml.python.org/' a:b=''/>") |
nothing calls this directly
no test coverage detected