(self, request)
| 287 | |
| 288 | @pytest.fixture(params=["choice", None]) |
| 289 | def getter_fixture(self, request): |
| 290 | choice_tag = request.param |
| 291 | parent = self.parent_bldr(choice_tag).element |
| 292 | expected_choice = parent.find(qn("w:choice")) # None if not found |
| 293 | return parent, expected_choice |
| 294 | |
| 295 | @pytest.fixture |
| 296 | def insert_fixture(self): |
nothing calls this directly
no test coverage detected