(self, width, height)
| 399 | |
| 400 | @pytest.fixture |
| 401 | def cxnSp_with_ext(self, width, height): |
| 402 | return ( |
| 403 | a_cxnSp() |
| 404 | .with_nsdecls() |
| 405 | .with_child( |
| 406 | an_spPr().with_child(an_xfrm().with_child(an_ext().with_cx(width).with_cy(height))) |
| 407 | ) |
| 408 | ).element |
| 409 | |
| 410 | @pytest.fixture |
| 411 | def cxnSp_with_off(self, left, top): |
nothing calls this directly
no test coverage detected