Files
2026-07-13 13:00:08 +08:00

19 lines
436 B
Go

package cli
import (
"testing"
"reasonix/internal/command"
)
func TestChatCommandNames(t *testing.T) {
m := chatTUI{commands: []command.Command{{Name: "review"}, {Name: "git:commit"}, {Name: "plan", Hidden: true}}}
if got := m.commandNames(); got != "/review · /git:commit" {
t.Errorf("commandNames = %q", got)
}
if got := (&chatTUI{}).commandNames(); got != "" {
t.Errorf("empty commandNames = %q, want \"\"", got)
}
}