Pillow/Tests/test_file_mcidas.py

18 lines
400 B
Python
Raw Normal View History

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