(self, image_parts_, image_part_, _image_parts_prop_)
| 63 | |
| 64 | @pytest.fixture |
| 65 | def image_part_fixture(self, image_parts_, image_part_, _image_parts_prop_): |
| 66 | package = Package(None) |
| 67 | image_file = "foobar.png" |
| 68 | _image_parts_prop_.return_value = image_parts_ |
| 69 | image_parts_.get_or_add_image_part.return_value = image_part_ |
| 70 | return package, image_file, image_parts_, image_part_ |
| 71 | |
| 72 | @pytest.fixture |
| 73 | def media_part_fixture(self, media_, media_part_, _media_parts_prop_, media_parts_): |