Files
odysseus/tests/cli/test_theme_cli_store.py
T
Alexandre Teixeira a79c0bd369 test: move area_cli tests into cli directory (#3842)
* test: move area_cli tests into cli directory

* test: include research CLI status in cli test move
2026-06-11 17:01:14 +00:00

16 lines
462 B
Python

import pytest
from tests.helpers.cli_loader import load_script
@pytest.mark.parametrize("payload", ["[]", '{"_users": []}'])
def test_load_prefs_rejects_non_object_user_store(tmp_path, capsys, payload):
cli = load_script("odysseus-theme")
cli._USER_PREFS_PATH = tmp_path / "user_prefs.json"
cli._USER_PREFS_PATH.write_text(payload)
with pytest.raises(SystemExit):
cli._load_prefs()
assert "is corrupt" in capsys.readouterr().err