25 lines
483 B
Python
25 lines
483 B
Python
|
|
from mopidy_iris import Extension
|
||
|
|
from mopidy_iris import frontend as frontend_lib
|
||
|
|
|
||
|
|
|
||
|
|
def test_get_default_config():
|
||
|
|
ext = Extension()
|
||
|
|
|
||
|
|
config = ext.get_default_config()
|
||
|
|
|
||
|
|
assert "[iris]" in config
|
||
|
|
assert "enabled = true" in config
|
||
|
|
|
||
|
|
|
||
|
|
def test_get_config_schema():
|
||
|
|
ext = Extension()
|
||
|
|
|
||
|
|
schema = ext.get_config_schema()
|
||
|
|
|
||
|
|
# TODO Test the content of your config schema
|
||
|
|
# assert "username" in schema
|
||
|
|
# assert "password" in schema
|
||
|
|
|
||
|
|
|
||
|
|
# TODO Write more tests
|