mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-16 01:35:36 -04:00
a79c0bd369
* test: move area_cli tests into cli directory * test: include research CLI status in cli test move
14 lines
574 B
Python
14 lines
574 B
Python
from types import SimpleNamespace
|
|
|
|
from tests.helpers.cli_loader import load_script
|
|
from tests.helpers.db_stubs import make_core_db_stub
|
|
|
|
|
|
def test_calendar_name_handles_missing_relation(monkeypatch):
|
|
make_core_db_stub(monkeypatch, models=["CalendarCal", "CalendarEvent"])
|
|
cli = load_script("odysseus-calendar")
|
|
|
|
assert cli._calendar_name(SimpleNamespace(calendar=None)) == ""
|
|
assert cli._calendar_name(SimpleNamespace(calendar=SimpleNamespace(name=123))) == ""
|
|
assert cli._calendar_name(SimpleNamespace(calendar=SimpleNamespace(name="Work"))) == "Work"
|