mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-03 21:24:31 +03:00
Added tests
This commit is contained in:
parent
d07ab52c66
commit
dabb68a61e
|
@ -1,6 +1,7 @@
|
|||
from helper import unittest, PillowTestCase, hopper
|
||||
|
||||
from PIL import Image
|
||||
from PIL import ImageSequence
|
||||
from PIL import SpiderImagePlugin
|
||||
|
||||
TEST_FILE = "Tests/images/hopper.spider"
|
||||
|
@ -85,6 +86,17 @@ class TestImageSpider(PillowTestCase):
|
|||
|
||||
self.assertRaises(IOError, lambda: Image.open(invalid_file))
|
||||
|
||||
def test_nonstack_file(self):
|
||||
im = Image.open(TEST_FILE)
|
||||
|
||||
self.assertRaises(EOFError, lambda: im.seek(0))
|
||||
|
||||
def test_nonstack_dos(self):
|
||||
im = Image.open(TEST_FILE)
|
||||
for i, frame in enumerate(ImageSequence.Iterator(im)):
|
||||
if i > 1:
|
||||
self.fail("Non-stack DOS file test failed")
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
Loading…
Reference in New Issue
Block a user