mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 09:57:43 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			622 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			622 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from helper import unittest, PillowTestCase
 | 
						|
 | 
						|
from PIL import Image, SunImagePlugin
 | 
						|
 | 
						|
 | 
						|
class TestFileSun(PillowTestCase):
 | 
						|
 | 
						|
    def test_sanity(self):
 | 
						|
        # Arrange
 | 
						|
        # Created with ImageMagick: convert hopper.jpg hopper.ras
 | 
						|
        test_file = "Tests/images/hopper.ras"
 | 
						|
 | 
						|
        # Act
 | 
						|
        im = Image.open(test_file)
 | 
						|
 | 
						|
        # Assert
 | 
						|
        self.assertEqual(im.size, (128, 128))
 | 
						|
 | 
						|
        invalid_file = "Tests/images/flower.jpg"
 | 
						|
        self.assertRaises(SyntaxError,
 | 
						|
                          lambda: SunImagePlugin.SunImageFile(invalid_file))
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    unittest.main()
 | 
						|
 | 
						|
# End of file
 |