(self)
| 631 | |
| 632 | @pytest.fixture |
| 633 | def insert_fixture(self): |
| 634 | parent = ( |
| 635 | a_parent() |
| 636 | .with_nsdecls() |
| 637 | .with_child(an_oomChild()) |
| 638 | .with_child(an_oooChild()) |
| 639 | .with_child(a_zomChild()) |
| 640 | ).element |
| 641 | zooChild = a_zooChild().with_nsdecls().element |
| 642 | expected_xml = ( |
| 643 | a_parent() |
| 644 | .with_nsdecls() |
| 645 | .with_child(an_oomChild()) |
| 646 | .with_child(an_oooChild()) |
| 647 | .with_child(a_zomChild()) |
| 648 | .with_child(a_zooChild()) |
| 649 | ).xml() |
| 650 | return parent, zooChild, expected_xml |
| 651 | |
| 652 | @pytest.fixture(params=[True, False]) |
| 653 | def remove_fixture(self, request): |
nothing calls this directly
no test coverage detected