(self, request, shape_)
| 279 | |
| 280 | @pytest.fixture |
| 281 | def BaseShapeFactory_(self, request, shape_): |
| 282 | return function_mock( |
| 283 | request, |
| 284 | "pptx.shapes.shapetree.BaseShapeFactory", |
| 285 | return_value=shape_, |
| 286 | autospec=True, |
| 287 | ) |
| 288 | |
| 289 | @pytest.fixture |
| 290 | def placeholder_(self, request): |
nothing calls this directly
no test coverage detected