def test_get_default_config(self): ext = Extension() config = ext.get_default_config() assert '[nowplayingtouch]' in config assert 'enabled = true' in config
def test_get_config_schema(self): ext = Extension() schema = ext.get_config_schema() # Test the content of your config schema assert 'screen_width' in schema assert 'screen_height' in schema