From 847b48f3af251d449feae0dad53905f18304ee48 Mon Sep 17 00:00:00 2001 From: ZdenekSrotyr Date: Fri, 10 Apr 2026 19:44:07 +0200 Subject: [PATCH] feat: add da analyst status and returning-session freshness check --- tests/test_cli.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_cli.py b/tests/test_cli.py index 55ad02c..9393f56 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -250,3 +250,8 @@ class TestMetricsHelp: result = runner.invoke(app, ["analyst", "--help"]) assert result.exit_code == 0 assert "setup" in result.output + + def test_analyst_status_help(self): + result = runner.invoke(app, ["analyst", "status", "--help"]) + assert result.exit_code == 0 + assert "freshness" in result.output.lower() or "workspace" in result.output.lower()