mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
ad784eb808
This is Christoph Gohlke's test suite from his personal PIL package found at http://www.lfd.uci.edu/~gohlke/pythonlibs/. This is just to bring it in as a separate commit. Future commits will align it with Pillow.
24 lines
514 B
Python
24 lines
514 B
Python
from tester import *
|
|
|
|
from PIL import Image
|
|
from PIL import ImageMode
|
|
|
|
ImageMode.getmode("1")
|
|
ImageMode.getmode("L")
|
|
ImageMode.getmode("P")
|
|
ImageMode.getmode("RGB")
|
|
ImageMode.getmode("I")
|
|
ImageMode.getmode("F")
|
|
|
|
m = ImageMode.getmode("1")
|
|
assert_equal(m.mode, "1")
|
|
assert_equal(m.bands, ("1",))
|
|
assert_equal(m.basemode, "L")
|
|
assert_equal(m.basetype, "L")
|
|
|
|
m = ImageMode.getmode("RGB")
|
|
assert_equal(m.mode, "RGB")
|
|
assert_equal(m.bands, ("R", "G", "B"))
|
|
assert_equal(m.basemode, "RGB")
|
|
assert_equal(m.basetype, "L")
|