(t *testing.T)
| 375 | } |
| 376 | |
| 377 | func TestPickShellTool_CodexCLI(t *testing.T) { |
| 378 | sess := mockSession("codex_cli_rs/0.112", codexCLITools) |
| 379 | if got := PickShellTool(sess); got != "shell" { |
| 380 | t.Errorf("expected shell, got %q", got) |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | func TestPickShellTool_Cline(t *testing.T) { |
| 385 | sess := mockSession("cline/3.18", clineTools) |
nothing calls this directly
no test coverage detected