(t *testing.T)
| 389 | } |
| 390 | |
| 391 | func TestPickShellTool_Cursor(t *testing.T) { |
| 392 | sess := mockSession("cursor/0.44", cursorTools) |
| 393 | if got := PickShellTool(sess); got != "run_command" { |
| 394 | t.Errorf("expected run_command, got %q", got) |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | func TestPickShellTool_Windsurf(t *testing.T) { |
| 399 | sess := mockSession("windsurf/1.2", windsurfTools) |
nothing calls this directly
no test coverage detected