mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
d50445ff30
Similar to the recent adoption of Black. isort is a Python utility to sort imports alphabetically and automatically separate into sections. By using isort, contributors can quickly and automatically conform to the projects style without thinking. Just let the tool do it. Uses the configuration recommended by the Black to avoid conflicts of style. Rewrite TestImageQt.test_deprecated to no rely on import order.
24 lines
812 B
Python
24 lines
812 B
Python
from PIL import _binary
|
|
|
|
from .helper import PillowTestCase
|
|
|
|
|
|
class TestBinary(PillowTestCase):
|
|
def test_standard(self):
|
|
self.assertEqual(_binary.i8(b"*"), 42)
|
|
self.assertEqual(_binary.o8(42), b"*")
|
|
|
|
def test_little_endian(self):
|
|
self.assertEqual(_binary.i16le(b"\xff\xff\x00\x00"), 65535)
|
|
self.assertEqual(_binary.i32le(b"\xff\xff\x00\x00"), 65535)
|
|
|
|
self.assertEqual(_binary.o16le(65535), b"\xff\xff")
|
|
self.assertEqual(_binary.o32le(65535), b"\xff\xff\x00\x00")
|
|
|
|
def test_big_endian(self):
|
|
self.assertEqual(_binary.i16be(b"\x00\x00\xff\xff"), 0)
|
|
self.assertEqual(_binary.i32be(b"\x00\x00\xff\xff"), 65535)
|
|
|
|
self.assertEqual(_binary.o16be(65535), b"\xff\xff")
|
|
self.assertEqual(_binary.o32be(65535), b"\x00\x00\xff\xff")
|