(self, left, top)
| 478 | |
| 479 | @pytest.fixture |
| 480 | def pic_with_off(self, left, top): |
| 481 | return ( |
| 482 | a_pic() |
| 483 | .with_nsdecls() |
| 484 | .with_child( |
| 485 | an_spPr().with_child(an_xfrm().with_child(an_off().with_x(left).with_y(top))) |
| 486 | ) |
| 487 | ).element |
| 488 | |
| 489 | @pytest.fixture |
| 490 | def pic_with_ext(self, width, height): |
nothing calls this directly
no test coverage detected