Pillow/Tests/test_file_gbr.py

18 lines
452 B
Python
Raw Normal View History

from PIL import GbrImagePlugin, Image
2015-07-03 08:03:25 +03:00
from .helper import PillowTestCase
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
def test_gbr_file(self):
2019-06-13 18:53:42 +03:00
im = Image.open("Tests/images/gbr.gbr")
2019-06-13 18:53:42 +03:00
target = Image.open("Tests/images/gbr.png")
self.assert_image_equal(target, im)