mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +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.
13 lines
342 B
Python
13 lines
342 B
Python
from tester import *
|
|
|
|
from PIL import Image
|
|
|
|
def test_resize():
|
|
def resize(mode, size):
|
|
out = lena(mode).resize(size)
|
|
assert_equal(out.mode, mode)
|
|
assert_equal(out.size, size)
|
|
for mode in "1", "P", "L", "RGB", "I", "F":
|
|
yield_test(resize, mode, (100, 100))
|
|
yield_test(resize, mode, (200, 200))
|