Files
2026-06-23 15:20:56 +02:00

7 lines
186 B
Python

from kivy.compat import isclose
def test_isclose():
assert isclose(1.1, 1.1), 'Close floats should assert True'
assert not isclose(1.1, 2.1), 'Close floats should assert True'