Added test for 1 dimensional L mode SGI save

This commit is contained in:
Andrew Murray 2017-08-07 21:57:59 +10:00
parent 667fff7862
commit 5d5a2a3762

View File

@ -55,6 +55,9 @@ class TestFileSgi(PillowTestCase):
for mode in ('L', 'RGB', 'RGBA'):
roundtrip(hopper(mode))
# Test 1 dimension for an L mode image
roundtrip(Image.new('L', (10, 1)))
def test_unsupported_mode(self):
im = hopper('LA')
out = self.tempfile('temp.sgi')