python-FloatImg/tests/maths.py

13 lines
252 B
Python
Raw Normal View History

2021-05-14 09:44:28 +02:00
"""test of core functions """
import floatimg
def test_maxvaalue():
width = 5
height = 5
img = floatimg.create_rgb(width, height)
color = (255.0, 255.0, 255.0)
img.put(2,2, color)
assert img.maxvalue() == 255.0ls