Pillow/Tests/test_file_gimppalette.py

20 lines
439 B
Python
Raw Normal View History

2015-07-01 08:47:47 +03:00
from helper import unittest, PillowTestCase
from PIL.GimpPaletteFile import GimpPaletteFile
class TestImage(PillowTestCase):
def test_sanity(self):
with open('Tests/images/test.gpl', 'rb') as fp:
GimpPaletteFile(fp)
with open('Tests/images/hopper.jpg', 'rb') as fp:
self.assertRaises(SyntaxError, lambda: GimpPaletteFile(fp))
if __name__ == '__main__':
unittest.main()
# End of file