Pillow/test/test_imagewin.py
2014-06-06 17:05:54 +03:00

19 lines
279 B
Python

from helper import unittest, PillowTestCase, lena
from PIL import Image
from PIL import ImageWin
class TestImage(PillowTestCase):
def test_sanity(self):
dir(Image)
dir(ImageWin)
pass
if __name__ == '__main__':
unittest.main()
# End of file