(self)
| 1301 | |
| 1302 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 1303 | def test_attlist_default(self): |
| 1304 | # Test default attribute values; See BPO 42151. |
| 1305 | root = ET.fromstring(ATTLIST_XML) |
| 1306 | self.assertEqual(root[0].attrib, |
| 1307 | {'{http://www.w3.org/XML/1998/namespace}lang': 'eng'}) |
| 1308 | |
| 1309 | |
| 1310 | class IterparseTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected