(self)
| 384 | |
| 385 | @pytest.fixture |
| 386 | def insert_fixture(self): |
| 387 | parent = ( |
| 388 | a_parent() |
| 389 | .with_nsdecls() |
| 390 | .with_child(an_oooChild()) |
| 391 | .with_child(a_zomChild()) |
| 392 | .with_child(a_zooChild()) |
| 393 | ).element |
| 394 | oomChild = an_oomChild().with_nsdecls().element |
| 395 | expected_xml = ( |
| 396 | a_parent() |
| 397 | .with_nsdecls() |
| 398 | .with_child(an_oomChild()) |
| 399 | .with_child(an_oooChild()) |
| 400 | .with_child(a_zomChild()) |
| 401 | .with_child(a_zooChild()) |
| 402 | ).xml() |
| 403 | return parent, oomChild, expected_xml |
| 404 | |
| 405 | @pytest.fixture |
| 406 | def new_fixture(self): |
nothing calls this directly
no test coverage detected