(self)
| 65 | |
| 66 | @pytest.fixture |
| 67 | def add_fixture(self): |
| 68 | parent = self.parent_bldr().element |
| 69 | expected_xml = self.parent_bldr("choice").xml() |
| 70 | return parent, expected_xml |
| 71 | |
| 72 | @pytest.fixture(params=[("choice2", "choice"), (None, "choice"), ("choice", "choice")]) |
| 73 | def get_or_change_to_fixture(self, request): |
nothing calls this directly
no test coverage detected