mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Test XVThumbImagePlugin for correctness
This commit is contained in:
parent
7371e813f6
commit
c79204bf08
|
@ -1,10 +1,20 @@
|
|||
from helper import unittest, PillowTestCase
|
||||
from helper import hopper, unittest, PillowTestCase
|
||||
|
||||
from PIL import XVThumbImagePlugin
|
||||
from PIL import Image, XVThumbImagePlugin
|
||||
|
||||
TEST_FILE = "Tests/images/hopper.p7"
|
||||
|
||||
|
||||
class TestFileXVThumb(PillowTestCase):
|
||||
|
||||
def test_open(self):
|
||||
# Act
|
||||
im = Image.open(TEST_FILE)
|
||||
|
||||
# Assert
|
||||
self.assertEqual(im.format, "XVThumb")
|
||||
self.assert_image_similar(im, hopper("P"), 49)
|
||||
|
||||
def test_invalid_file(self):
|
||||
invalid_file = "Tests/images/flower.jpg"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user