mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			455 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			455 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from helper import unittest, PillowTestCase
 | 
						|
 | 
						|
from PIL import Image
 | 
						|
 | 
						|
# sample ppm stream
 | 
						|
file = "Tests/images/lena.xpm"
 | 
						|
data = open(file, "rb").read()
 | 
						|
 | 
						|
 | 
						|
class TestFileXpm(PillowTestCase):
 | 
						|
 | 
						|
    def test_sanity(self):
 | 
						|
        im = Image.open(file)
 | 
						|
        im.load()
 | 
						|
        self.assertEqual(im.mode, "P")
 | 
						|
        self.assertEqual(im.size, (128, 128))
 | 
						|
        self.assertEqual(im.format, "XPM")
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    unittest.main()
 | 
						|
 | 
						|
# End of file
 |