Pillow/test/test_imagetk.py
2014-06-09 20:36:40 -04:00

18 lines
325 B
Python

from test.helper import unittest, PillowTestCase
class TestImageTk(PillowTestCase):
def test_import(self):
try:
from PIL import ImageTk
dir(ImageTk)
except (OSError, ImportError) as v:
self.skipTest(v)
if __name__ == '__main__':
unittest.main()
# End of file