Implementing cookiecutter

This commit is contained in:
James Barnsley
2019-11-24 21:17:41 +13:00
parent d2ca54bae6
commit cbc7d155da
7 changed files with 198 additions and 130 deletions

24
tests/test_extension.py Executable file
View File

@ -0,0 +1,24 @@
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