2015-07-03 08:03:25 +03:00
|
|
|
from helper import unittest, PillowTestCase
|
|
|
|
|
2016-01-08 18:18:48 +03:00
|
|
|
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
|
|
|
|
2016-01-08 18:18:48 +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()
|