(self)
| 547 | |
| 548 | @pytest.fixture |
| 549 | def insert_fixture(self): |
| 550 | parent = ( |
| 551 | a_parent() |
| 552 | .with_nsdecls() |
| 553 | .with_child(an_oomChild()) |
| 554 | .with_child(an_oooChild()) |
| 555 | .with_child(a_zooChild()) |
| 556 | ).element |
| 557 | zomChild = a_zomChild().with_nsdecls().element |
| 558 | expected_xml = ( |
| 559 | a_parent() |
| 560 | .with_nsdecls() |
| 561 | .with_child(an_oomChild()) |
| 562 | .with_child(an_oooChild()) |
| 563 | .with_child(a_zomChild()) |
| 564 | .with_child(a_zooChild()) |
| 565 | ).xml() |
| 566 | return parent, zomChild, expected_xml |
| 567 | |
| 568 | @pytest.fixture |
| 569 | def new_fixture(self): |
nothing calls this directly
no test coverage detected