mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
24 lines
519 B
Python
24 lines
519 B
Python
|
from helper import unittest, PillowTestCase
|
||
|
|
||
|
from PIL import WalImageFile
|
||
|
|
||
|
|
||
|
class TestFileWal(PillowTestCase):
|
||
|
|
||
|
def test_open(self):
|
||
|
# Arrange
|
||
|
TEST_FILE = "Tests/images/hopper.wal"
|
||
|
|
||
|
# Act
|
||
|
im = WalImageFile.open(TEST_FILE)
|
||
|
|
||
|
# Assert
|
||
|
self.assertEqual(im.format, "WAL")
|
||
|
self.assertEqual(im.format_description, "Quake2 Texture")
|
||
|
self.assertEqual(im.mode, "P")
|
||
|
self.assertEqual(im.size, (128, 128))
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|