(self, left, top)
| 554 | |
| 555 | @pytest.fixture |
| 556 | def sp_with_off(self, left, top): |
| 557 | return ( |
| 558 | an_sp() |
| 559 | .with_nsdecls() |
| 560 | .with_child( |
| 561 | an_spPr().with_child(an_xfrm().with_child(an_off().with_x(left).with_y(top))) |
| 562 | ) |
| 563 | ).element |
| 564 | |
| 565 | @pytest.fixture |
| 566 | def top(self): |
nothing calls this directly
no test coverage detected