Pillow/Tests/test_file_xvthumb.py

18 lines
404 B
Python
Raw Normal View History

2017-03-01 12:20:18 +03:00
from helper import unittest, PillowTestCase
from PIL import XVThumbImagePlugin
class TestFileXVThumb(PillowTestCase):
def test_invalid_file(self):
invalid_file = "Tests/images/flower.jpg"
self.assertRaises(SyntaxError,
lambda:
XVThumbImagePlugin.XVThumbImageFile(invalid_file))
if __name__ == '__main__':
unittest.main()