You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/tests/bazarr/test_config.py

11 lines
251 B

from bazarr.app import config
def test_get_settings():
assert isinstance(config.get_settings(), dict)
def test_get_scores():
assert isinstance(config.get_scores()["movie"], dict)
assert isinstance(config.get_scores()["episode"], dict)