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.
20 lines
555 B
Python
20 lines
555 B
Python
from tester import *
|
|
|
|
from PIL import Image
|
|
|
|
def test_palette():
|
|
def palette(mode):
|
|
p = lena(mode).getpalette()
|
|
if p:
|
|
return p[:10]
|
|
return None
|
|
assert_equal(palette("1"), None)
|
|
assert_equal(palette("L"), None)
|
|
assert_equal(palette("I"), None)
|
|
assert_equal(palette("F"), None)
|
|
assert_equal(palette("P"), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0])
|
|
assert_equal(palette("RGB"), None)
|
|
assert_equal(palette("RGBA"), None)
|
|
assert_equal(palette("CMYK"), None)
|
|
assert_equal(palette("YCbCr"), None)
|