2019-02-03 18:34:53 +03:00
|
|
|
from .helper import PillowTestCase
|
2015-07-03 08:03:25 +03:00
|
|
|
|
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,
|
2017-09-01 14:05:40 +03:00
|
|
|
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)
|