(self)
| 461 | self.assertIn("jam", values) |
| 462 | |
| 463 | def testGetAttribute(self): |
| 464 | dom = Document() |
| 465 | child = dom.appendChild( |
| 466 | dom.createElementNS("http://www.python.org", "python:abc")) |
| 467 | self.assertEqual(child.getAttribute('missing'), '') |
| 468 | |
| 469 | def testGetAttributeNS(self): |
| 470 | dom = Document() |
nothing calls this directly
no test coverage detected