Add test for #1524.

This commit is contained in:
John Calsbeek 2015-12-01 09:14:32 -08:00
parent 423e381b7c
commit b496f37e1f

View File

@ -115,6 +115,11 @@ class TestFileTiff(PillowTestCase):
self.fail(
"Bad EXIF data passed incorrect values to _binary unpack")
def test_save_rgba(self):
im = hopper("RGBA")
outfile = self.tempfile("temp.tif")
im.save(outfile)
def test_save_unsupported_mode(self):
im = hopper("HSV")
outfile = self.tempfile("temp.tif")