(t *testing.T)
| 65 | } |
| 66 | |
| 67 | func TestHelmDiffWithKubeContextReuseValues(t *testing.T) { |
| 68 | h := setupHelmDiffTest(t) |
| 69 | defer h.cleanup() |
| 70 | |
| 71 | os.Args = []string{"helm-diff", "upgrade", "--reuse-values", "--kube-context", "test-context", "-f", "test/testdata/test-values.yaml", "test-release", "test/testdata/test-chart"} |
| 72 | require.NoError(t, cmd.New().Execute()) |
| 73 | } |
| 74 | |
| 75 | func TestHelmDiffRevisionWithKubeContext(t *testing.T) { |
| 76 | h := setupHelmDiffTest(t) |
nothing calls this directly
no test coverage detected