mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 21:40:36 +01:00
10 lines
229 B
Python
10 lines
229 B
Python
from kivy.tests.common import GraphicUnitTest
|
|
|
|
from kivymd.app import MDApp
|
|
|
|
|
|
class BaseTest(GraphicUnitTest):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.app = MDApp() # NOQA
|