Pillow/Tests/test_file_fpx.py

19 lines
377 B
Python
Raw Normal View History

2015-07-03 08:03:25 +03:00
from helper import unittest, PillowTestCase
from PIL import FpxImagePlugin
class TestFileFpx(PillowTestCase):
def test_invalid_file(self):
2015-07-03 09:22:56 +03:00
invalid_file = "Tests/images/flower.jpg"
self.assertRaises(SyntaxError,
lambda: FpxImagePlugin.FpxImageFile(invalid_file))
2015-07-03 08:03:25 +03:00
if __name__ == '__main__':
unittest.main()
# End of file