mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
12 lines
148 B
Python
12 lines
148 B
Python
|
from tester import *
|
||
|
|
||
|
from PIL import Image
|
||
|
|
||
|
def test_sanity():
|
||
|
|
||
|
im = lena()
|
||
|
|
||
|
pix = im.load()
|
||
|
|
||
|
assert_equal(pix[0, 0], (223, 162, 133))
|