Files
MementoMori/kivy/tests/test_compat.py
thatscringebro abd15f28b6 Ajout du GUI
2022-08-08 16:31:52 -04: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'