Pillow/test/test_imagetk.py

18 lines
325 B
Python
Raw Normal View History

2014-06-10 04:36:40 +04:00
from test.helper import unittest, PillowTestCase
2014-06-06 17:55:00 +04:00
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