(self)
| 383 | '<tag key="value"><subtag /><subtag /></tag>') |
| 384 | |
| 385 | def test_cdata(self): |
| 386 | # Test CDATA handling (etc). |
| 387 | |
| 388 | self.serialize_check(ET.XML("<tag>hello</tag>"), |
| 389 | '<tag>hello</tag>') |
| 390 | self.serialize_check(ET.XML("<tag>hello</tag>"), |
| 391 | '<tag>hello</tag>') |
| 392 | self.serialize_check(ET.XML("<tag><![CDATA[hello]]></tag>"), |
| 393 | '<tag>hello</tag>') |
| 394 | |
| 395 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 396 | def test_file_init(self): |
nothing calls this directly
no test coverage detected