(self, width, height)
| 444 | |
| 445 | @pytest.fixture |
| 446 | def grpSp_with_ext(self, width, height): |
| 447 | return ( |
| 448 | a_grpSp() |
| 449 | .with_nsdecls("p", "a") |
| 450 | .with_child( |
| 451 | a_grpSpPr().with_child( |
| 452 | an_xfrm().with_child(an_ext().with_cx(width).with_cy(height)) |
| 453 | ) |
| 454 | ) |
| 455 | ).element |
| 456 | |
| 457 | @pytest.fixture |
| 458 | def grpSp_with_off(self, left, top): |
nothing calls this directly
no test coverage detected