(self, request)
| 402 | |
| 403 | @pytest.fixture(params=[True, False]) |
| 404 | def get_or_add_fixture(self, request): |
| 405 | zooChild_is_present = request.param |
| 406 | parent = self.parent_bldr(zooChild_is_present).element |
| 407 | expected_xml = self.parent_bldr(True).xml() |
| 408 | return parent, expected_xml |
| 409 | |
| 410 | @pytest.fixture |
| 411 | def insert_fixture(self): |
nothing calls this directly
no test coverage detected