(t *testing.T)
| 256 | t.Fatalf("bad inline status: %q", s) |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | func TestInlineStatusGeneric(t *testing.T) { |
| 261 | s := InlineStatus(chmctx.ToolCall{Name: "context7", |
| 262 | Arguments: map[string]any{"query": "react useEffect"}}) |
| 263 | if !strings.HasPrefix(s, "▶ context7: react") { |
| 264 | t.Fatalf("bad inline status: %q", s) |
| 265 | } |
| 266 | } |
| 267 |
nothing calls this directly
no test coverage detected