(self, left, top)
| 456 | |
| 457 | @pytest.fixture |
| 458 | def grpSp_with_off(self, left, top): |
| 459 | return ( |
| 460 | a_grpSp() |
| 461 | .with_nsdecls("p", "a") |
| 462 | .with_child( |
| 463 | a_grpSpPr().with_child(an_xfrm().with_child(an_off().with_x(left).with_y(top))) |
| 464 | ) |
| 465 | ).element |
| 466 | |
| 467 | @pytest.fixture |
| 468 | def height(self): |
nothing calls this directly
no test coverage detected