Pillow/Tests/test_file_gbr.py

23 lines
544 B
Python
Raw Normal View History

2015-07-03 08:03:25 +03:00
from helper import unittest, PillowTestCase
from PIL import Image, GbrImagePlugin
2015-07-03 08:03:25 +03:00
class TestFileGbr(PillowTestCase):
def test_invalid_file(self):
2015-07-03 09:22:56 +03:00
invalid_file = "Tests/images/flower.jpg"
self.assertRaises(SyntaxError,
lambda: GbrImagePlugin.GbrImageFile(invalid_file))
2015-07-03 08:03:25 +03:00
def test_gbr_file(self):
im = Image.open('Tests/images/gbr.gbr')
target = Image.open('Tests/images/gbr.png')
self.assert_image_equal(target, im)
2015-07-03 08:03:25 +03:00
if __name__ == '__main__':
unittest.main()