mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-31 07:57:27 +03:00 
			
		
		
		
	To better follow conventional pytest style, this removes the outer wrapper class in favor of a function for some tests. These tests were picked as they are relatively simple and presented no barriers to a quick port. The assert* methods are replaced with assert statements. When necessary, a fixture is used to create a temporary directory. This commit does not convert the entire test suite to this style as some test classes use methods or other advanced features that are difficult to automatically convert. The goal is to address these issues in followup commits. Refs #4193
		
			
				
	
	
		
			23 lines
		
	
	
		
			590 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			590 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from PIL import _binary
 | |
| 
 | |
| 
 | |
| def test_standard():
 | |
|     assert _binary.i8(b"*") == 42
 | |
|     assert _binary.o8(42) == b"*"
 | |
| 
 | |
| 
 | |
| def test_little_endian():
 | |
|     assert _binary.i16le(b"\xff\xff\x00\x00") == 65535
 | |
|     assert _binary.i32le(b"\xff\xff\x00\x00") == 65535
 | |
| 
 | |
|     assert _binary.o16le(65535) == b"\xff\xff"
 | |
|     assert _binary.o32le(65535) == b"\xff\xff\x00\x00"
 | |
| 
 | |
| 
 | |
| def test_big_endian():
 | |
|     assert _binary.i16be(b"\x00\x00\xff\xff") == 0
 | |
|     assert _binary.i32be(b"\x00\x00\xff\xff") == 65535
 | |
| 
 | |
|     assert _binary.o16be(65535) == b"\xff\xff"
 | |
|     assert _binary.o32be(65535) == b"\x00\x00\xff\xff"
 |