(self, from_blob_, image_)
| 207 | |
| 208 | @pytest.fixture |
| 209 | def from_stream_fixture(self, from_blob_, image_): |
| 210 | with open(test_image_path, "rb") as f: |
| 211 | blob = f.read() |
| 212 | image_file = io.BytesIO(blob) |
| 213 | from_blob_.return_value = image_ |
| 214 | return image_file, blob, image_ |
| 215 | |
| 216 | @pytest.fixture |
| 217 | def pil_fixture(self): |