mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02: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
|