(self, width, height)
| 488 | |
| 489 | @pytest.fixture |
| 490 | def pic_with_ext(self, width, height): |
| 491 | return ( |
| 492 | a_pic() |
| 493 | .with_nsdecls() |
| 494 | .with_child( |
| 495 | an_spPr().with_child(an_xfrm().with_child(an_ext().with_cx(width).with_cy(height))) |
| 496 | ) |
| 497 | ).element |
| 498 | |
| 499 | @pytest.fixture |
| 500 | def _PlaceholderFormat_(self, request, placeholder_format_): |
nothing calls this directly
no test coverage detected