Pillow/Tests/test_file_gbr.py

25 lines
584 B
Python
Raw Normal View History

2020-02-12 19:29:19 +03:00
import pytest
from PIL import GbrImagePlugin, Image
2015-07-03 08:03:25 +03:00
from .helper import assert_image_equal_tofile
2015-07-03 08:03:25 +03:00
2020-02-12 19:29:19 +03:00
def test_invalid_file():
invalid_file = "Tests/images/flower.jpg"
2015-07-03 09:22:56 +03:00
2020-02-12 19:29:19 +03:00
with pytest.raises(SyntaxError):
GbrImagePlugin.GbrImageFile(invalid_file)
2015-07-03 08:03:25 +03:00
2020-02-12 19:29:19 +03:00
def test_gbr_file():
with Image.open("Tests/images/gbr.gbr") as im:
assert_image_equal_tofile(im, "Tests/images/gbr.png")
2020-05-17 04:04:02 +03:00
def test_multiple_load_operations():
with Image.open("Tests/images/gbr.gbr") as im:
2020-05-17 04:04:02 +03:00
im.load()
im.load()
assert_image_equal_tofile(im, "Tests/images/gbr.png")