`cam l` alias accepts the same args.
(t *testing.T)
| 101 | |
| 102 | // `cam l` alias accepts the same args. |
| 103 | func TestLaunchAliasL(t *testing.T) { |
| 104 | isolatedHome(t) |
| 105 | storePath := filepath.Join(t.TempDir(), "store.db") |
| 106 | seedProvider(t, storePath, "e", "https://x", "claude", "m", "") |
| 107 | stdout, _, code := execute(t, "--store", storePath, "l", "claude", "--dry-run") |
| 108 | if code != 0 { |
| 109 | t.Fatalf("exit = %d", code) |
| 110 | } |
| 111 | if !strings.Contains(stdout, "Tool: claude") { |
| 112 | t.Fatalf("alias l output unexpected:\n%s", stdout) |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | // --dry-run prints the planned config writes for a tool that has a |
| 117 | // config_target block (claude). |
nothing calls this directly
no test coverage detected