mirror of
https://github.com/markqvist/Sideband.git
synced 2024-12-11 00:44:25 -05: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
|