(t *testing.T)
| 428 | } |
| 429 | |
| 430 | func TestCapabilityLine_FormatExact(t *testing.T) { |
| 431 | got := CapabilityLine([]string{"text", "md", "json", "llm"}) |
| 432 | want := "cmdhelp/0.1: text, md, json, llm" |
| 433 | if got != want { |
| 434 | t.Errorf("CapabilityLine = %q, want %q", got, want) |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | func TestCapabilityLine_HonorsCallerOrderAndSet(t *testing.T) { |
| 439 | // Order is not significant per spec — the helper preserves caller |
nothing calls this directly
no test coverage detected