mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			680 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			680 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from .helper import PillowTestCase
 | 
						|
 | 
						|
import PIL
 | 
						|
import PIL.Image
 | 
						|
 | 
						|
 | 
						|
class TestSanity(PillowTestCase):
 | 
						|
    def test_sanity(self):
 | 
						|
 | 
						|
        # Make sure we have the binary extension
 | 
						|
        PIL.Image.core.new("L", (100, 100))
 | 
						|
 | 
						|
        # Create an image and do stuff with it.
 | 
						|
        im = PIL.Image.new("1", (100, 100))
 | 
						|
        self.assertEqual((im.mode, im.size), ("1", (100, 100)))
 | 
						|
        self.assertEqual(len(im.tobytes()), 1300)
 | 
						|
 | 
						|
        # Create images in all remaining major modes.
 | 
						|
        PIL.Image.new("L", (100, 100))
 | 
						|
        PIL.Image.new("P", (100, 100))
 | 
						|
        PIL.Image.new("RGB", (100, 100))
 | 
						|
        PIL.Image.new("I", (100, 100))
 | 
						|
        PIL.Image.new("F", (100, 100))
 |