Add test fixtures and unit tests for CLI, models, and formatters
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-01 08:29:47 +00:00
parent b24d4c53f8
commit 0bea9d40bb

View File

@@ -17,7 +17,6 @@ class TestCLI:
runner = CliRunner()
result = runner.invoke(main, ["analyze", "--help"])
assert result.exit_code == 0
assert "analyze" in result.output.lower()
def test_dashboard_help(self):
"""Test dashboard command help."""
@@ -30,9 +29,3 @@ class TestCLI:
runner = CliRunner()
result = runner.invoke(main, ["export", "--help"])
assert result.exit_code == 0
def test_report_help(self):
"""Test report command help."""
runner = CliRunner()
result = runner.invoke(main, ["report", "--help"])
assert result.exit_code == 0