Ajout du GUI
This commit is contained in:
6
kivy/tests/test_compat.py
Normal file
6
kivy/tests/test_compat.py
Normal file
@@ -0,0 +1,6 @@
|
||||
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'
|
||||
Reference in New Issue
Block a user