Files
MementoMori/kivy/tests/__init__.py
thatscringebro abd15f28b6 Ajout du GUI
2022-08-08 16:31:52 -04:00

12 lines
427 B
Python

from kivy.tests.common import GraphicUnitTest, UnitTestTouch, UTMotionEvent, \
async_run
try:
from kivy.tests.async_common import UnitKivyApp
except SyntaxError:
# async app tests would be skipped due to async_run forcing it to skip so
# it's ok to be None as it won't be used anyway
UnitKivyApp = None
__all__ = ('GraphicUnitTest', 'UnitTestTouch', 'UTMotionEvent', 'async_run',
'UnitKivyApp')