mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 09:57:43 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			320 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			320 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from 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
 |