mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +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
680 B
Python
24 lines
680 B
Python
import PIL
|
|
import PIL.Image
|
|
|
|
from .helper import PillowTestCase
|
|
|
|
|
|
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))
|