(self, width, height)
| 544 | |
| 545 | @pytest.fixture |
| 546 | def sp_with_ext(self, width, height): |
| 547 | return ( |
| 548 | an_sp() |
| 549 | .with_nsdecls() |
| 550 | .with_child( |
| 551 | an_spPr().with_child(an_xfrm().with_child(an_ext().with_cx(width).with_cy(height))) |
| 552 | ) |
| 553 | ).element |
| 554 | |
| 555 | @pytest.fixture |
| 556 | def sp_with_off(self, left, top): |
nothing calls this directly
no test coverage detected