Pillow/test/test_imagewin.py

19 lines
279 B
Python
Raw Normal View History

2014-06-06 17:55:00 +04:00
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)
2014-06-06 17:55:00 +04:00
pass
if __name__ == '__main__':
unittest.main()
# End of file