mirror of
https://github.com/markqvist/Sideband.git
synced 2025-07-05 20:04:50 -04:00
9 lines
229 B
Python
9 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
|