示例#1
0
 def test_start_raw_app(self):
     lang._delayed_start = None
     a = MDApp()
     Clock.schedule_once(a.stop, 0.1)
     a.run()
示例#2
0
 def test_theme_manager_existance(self):
     lang._delayed_start = None
     a = MDApp()
     Clock.schedule_once(a.stop, 0.1)
     a.run()
     assert isinstance(a.theme_cls, ThemeManager)