11 lines
314 B
Python
11 lines
314 B
Python
from botty_next.config import load_config
|
|
|
|
|
|
def test_load_default_config() -> None:
|
|
config = load_config("botty_next/config/default.yaml")
|
|
|
|
assert config.profile_name == "local"
|
|
assert config.capture.backend == "fixture"
|
|
assert config.input.enabled is False
|
|
assert config.input.dry_run is True
|