Spaces:
Sleeping
Sleeping
File size: 228 Bytes
38c9982 | 1 2 3 4 5 6 7 | from src.executive_assistant.models import AssistantAction
def test_action_model_accepts_known_action_type() -> None:
action = AssistantAction(action_type="archive", target_id=1)
assert action.action_type == "archive"
|