summaryrefslogtreecommitdiff
path: root/internal/hexaiaction/tui_custom_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-06-18 08:05:32 +0300
committerPaul Buetow <paul@buetow.org>2026-06-18 08:05:32 +0300
commita80ad2b4691d0df63f68c6977ee18444e7bb752f (patch)
tree6edc47fcc3c929856826432cf3df3394a14934e8 /internal/hexaiaction/tui_custom_test.go
parent4ffb22e7f69f1c9c79b095d4e60bad3d97aac55b (diff)
ik0 replace remaining test seams with DI
Diffstat (limited to 'internal/hexaiaction/tui_custom_test.go')
-rw-r--r--internal/hexaiaction/tui_custom_test.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/internal/hexaiaction/tui_custom_test.go b/internal/hexaiaction/tui_custom_test.go
index 7f7e2d3..62d37cb 100644
--- a/internal/hexaiaction/tui_custom_test.go
+++ b/internal/hexaiaction/tui_custom_test.go
@@ -71,3 +71,20 @@ func TestRunTUIWithCustom_SubmenuAndHotkeys(t *testing.T) {
t.Fatalf("expected selected custom a, got %+v", selected)
}
}
+
+func TestRunTUIWithCustom_EmptyCustomsUsesRunner(t *testing.T) {
+ r := tuiRunner{newProgram: func(m model) teaProgram {
+ return fakeProg{m: m, onRun: func(mm *model) { mm.chosen = ActionDocument }}
+ }}
+
+ kind, selected, err := r.RunTUIWithCustom(nil, "")
+ if err != nil {
+ t.Fatalf("RunTUIWithCustom error: %v", err)
+ }
+ if kind != ActionDocument {
+ t.Fatalf("kind = %s, want %s", kind, ActionDocument)
+ }
+ if selected != nil {
+ t.Fatalf("selected = %+v, want nil", selected)
+ }
+}