mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
22 lines
511 B
Python
22 lines
511 B
Python
from PIL import WalImageFile
|
|
|
|
from .helper import assert_image_equal_tofile
|
|
|
|
|
|
def test_open():
|
|
# Arrange
|
|
TEST_FILE = "Tests/images/hopper.wal"
|
|
|
|
# Act
|
|
with WalImageFile.open(TEST_FILE) as im:
|
|
|
|
# Assert
|
|
assert im.format == "WAL"
|
|
assert im.format_description == "Quake2 Texture"
|
|
assert im.mode == "P"
|
|
assert im.size == (128, 128)
|
|
|
|
assert isinstance(im, WalImageFile.WalImageFile)
|
|
|
|
assert_image_equal_tofile(im, "Tests/images/hopper_wal.png")
|