(t *testing.T)
| 89 | } |
| 90 | |
| 91 | func TestHelmDiffReleaseWithKubeContext(t *testing.T) { |
| 92 | h := setupHelmDiffTest(t) |
| 93 | defer h.cleanup() |
| 94 | |
| 95 | os.Args = []string{"helm-diff", "release", "--kube-context", "test-context", "test-release1", "test-release2"} |
| 96 | require.NoError(t, cmd.New().Execute()) |
| 97 | } |
| 98 | |
| 99 | const ( |
| 100 | env = "BECOME_FAKE_HELM" |
nothing calls this directly
no test coverage detected