2019-02-03 18:34:53 +03:00
|
|
|
from .helper import PillowTestCase
|
2012-10-15 09:55:39 +04:00
|
|
|
|
2012-10-16 00:26:38 +04:00
|
|
|
import PIL
|
|
|
|
import PIL.Image
|
|
|
|
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
class TestSanity(PillowTestCase):
|
|
|
|
def test_sanity(self):
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
# Make sure we have the binary extension
|
2018-10-02 11:44:43 +03:00
|
|
|
PIL.Image.core.new("L", (100, 100))
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
# Create an image and do stuff with it.
|
|
|
|
im = PIL.Image.new("1", (100, 100))
|
2019-06-13 18:53:42 +03:00
|
|
|
self.assertEqual((im.mode, im.size), ("1", (100, 100)))
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(len(im.tobytes()), 1300)
|
|
|
|
|
|
|
|
# Create images in all remaining major modes.
|
2018-10-02 11:44:43 +03:00
|
|
|
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))
|