(t *testing.T, cmd *cobra.Command)
| 59 | } |
| 60 | |
| 61 | func setRmOutputJSON(t *testing.T, cmd *cobra.Command) { |
| 62 | t.Helper() |
| 63 | |
| 64 | if err := cmd.Flags().Set(outputFlag, "json"); err != nil { |
| 65 | t.Fatal(err) |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | type removeOutput struct { |
| 70 | Input map[string]any `json:"input"` |
no outgoing calls
no test coverage detected