Create a real PIL Image for testing.
()
| 41 | |
| 42 | @pytest.fixture |
| 43 | def real_image(): |
| 44 | """Create a real PIL Image for testing.""" |
| 45 | img = Image.new("RGB", (100, 100), color="red") |
| 46 | return img |
| 47 | |
| 48 | |
| 49 | class TestBaseAPIInit: |
nothing calls this directly
no outgoing calls
no test coverage detected