Pillow/Tests/test_file_fpx.py

16 lines
314 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):
self.assertRaises(SyntaxError, lambda: FpxImagePlugin.FpxImageFile("Tests/images/flower.jpg"))
if __name__ == '__main__':
unittest.main()
# End of file