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"
|
|
|
|
|
2019-06-13 18:53:42 +03:00
|
|
|
self.assertRaises(SyntaxError, 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):
|
2019-06-13 18:53:42 +03:00
|
|
|
im = Image.open("Tests/images/gbr.gbr")
|
2016-01-08 18:18:48 +03:00
|
|
|
|
2019-06-13 18:53:42 +03:00
|
|
|
target = Image.open("Tests/images/gbr.png")
|
2016-01-08 18:18:48 +03:00
|
|
|
|
|
|
|
self.assert_image_equal(target, im)
|