(self)
| 1325 | '<cirriculum status="public" company="example"></cirriculum>') |
| 1326 | |
| 1327 | def test_attlist_default(self): |
| 1328 | # Test default attribute values; See BPO 42151. |
| 1329 | root = ET.fromstring(ATTLIST_XML) |
| 1330 | self.assertEqual(root[0].attrib, |
| 1331 | {'{http://www.w3.org/XML/1998/namespace}lang': 'eng'}) |
| 1332 | |
| 1333 | |
| 1334 | class IterparseTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected