summaryrefslogtreecommitdiff
path: root/internal/cli/report_test.go
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-08 21:03:50 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-08 21:03:50 +0000
commit632ea5a44731af94b6238f330a3b5440906c8ae7 (patch)
treed8c780412598d66b89ef390b5729e379fdfd9d5b /internal/cli/report_test.go
parent406247b14985ab57902e8e42898dc8cb8960290d (diff)
parent93a4c852bf726b00e8014d385165f847763fa214 (diff)
merge: pull latest from master and resolve conflicts
- Resolve conflicts in API server, CLI, and executor. - Maintain Gemini classification and assignment logic. - Update UI to use generic agent config and project_dir. - Fix ProjectDir/WorkingDir inconsistencies in Gemini runner. - All tests passing after merge.
Diffstat (limited to 'internal/cli/report_test.go')
-rw-r--r--internal/cli/report_test.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/internal/cli/report_test.go b/internal/cli/report_test.go
new file mode 100644
index 0000000..3ef96f4
--- /dev/null
+++ b/internal/cli/report_test.go
@@ -0,0 +1,32 @@
+package cli
+
+import (
+ "strings"
+ "testing"
+)
+
+func TestReportCmd_InvalidFormat(t *testing.T) {
+ cmd := newReportCmd()
+ cmd.SetArgs([]string{"--format", "xml"})
+ err := cmd.Execute()
+ if err == nil {
+ t.Fatal("expected error for invalid format, got nil")
+ }
+ if !strings.Contains(err.Error(), "format") {
+ t.Errorf("expected error to mention 'format', got: %v", err)
+ }
+}
+
+func TestReportCmd_DefaultsRegistered(t *testing.T) {
+ cmd := newReportCmd()
+ f := cmd.Flags()
+ if f.Lookup("format") == nil {
+ t.Error("missing --format flag")
+ }
+ if f.Lookup("limit") == nil {
+ t.Error("missing --limit flag")
+ }
+ if f.Lookup("task") == nil {
+ t.Error("missing --task flag")
+ }
+}