Pillow/Tests/test_imagetk.py
2014-06-10 12:10:47 +03:00

18 lines
336 B
Python

from helper import unittest, PillowTestCase, tearDownModule
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