mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-23 05:50: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
|