2012-10-16 00:26:38 +04:00
|
|
|
from tester import *
|
|
|
|
|
|
|
|
from PIL import Image
|
|
|
|
|
|
|
|
def test_sanity():
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2012-10-16 00:26:38 +04:00
|
|
|
im = lena()
|
|
|
|
|
|
|
|
assert_exception(ValueError, lambda: im.point(list(range(256))))
|
|
|
|
assert_no_exception(lambda: im.point(list(range(256))*3))
|
|
|
|
assert_no_exception(lambda: im.point(lambda x: x))
|
|
|
|
|
|
|
|
im = im.convert("I")
|
|
|
|
assert_exception(ValueError, lambda: im.point(list(range(256))))
|
|
|
|
assert_no_exception(lambda: im.point(lambda x: x*1))
|
|
|
|
assert_no_exception(lambda: im.point(lambda x: x+1))
|
|
|
|
assert_no_exception(lambda: im.point(lambda x: x*1+1))
|
|
|
|
assert_exception(TypeError, lambda: im.point(lambda x: x-1))
|
|
|
|
assert_exception(TypeError, lambda: im.point(lambda x: x/1))
|