mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-31 07:57:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			657 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			657 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import pytest
 | |
| 
 | |
| from PIL import GbrImagePlugin, Image
 | |
| 
 | |
| from .helper import assert_image_equal
 | |
| 
 | |
| 
 | |
| def test_invalid_file():
 | |
|     invalid_file = "Tests/images/flower.jpg"
 | |
| 
 | |
|     with pytest.raises(SyntaxError):
 | |
|         GbrImagePlugin.GbrImageFile(invalid_file)
 | |
| 
 | |
| 
 | |
| def test_gbr_file():
 | |
|     with Image.open("Tests/images/gbr.gbr") as im:
 | |
|         with Image.open("Tests/images/gbr.png") as target:
 | |
|             assert_image_equal(target, im)
 | |
| 
 | |
| 
 | |
| def test_multiple_load_operations():
 | |
|     with Image.open("Tests/images/gbr.gbr") as im:
 | |
|         im.load()
 | |
|         im.load()
 | |
|         with Image.open("Tests/images/gbr.png") as target:
 | |
|             assert_image_equal(target, im)
 |