(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func TestHelmDiffWithKubeContext(t *testing.T) { |
| 60 | h := setupHelmDiffTest(t) |
| 61 | defer h.cleanup() |
| 62 | |
| 63 | os.Args = []string{"helm-diff", "upgrade", "-f", "test/testdata/test-values.yaml", "--kube-context", "test-context", "test-release", "test/testdata/test-chart"} |
| 64 | require.NoError(t, cmd.New().Execute()) |
| 65 | } |
| 66 | |
| 67 | func TestHelmDiffWithKubeContextReuseValues(t *testing.T) { |
| 68 | h := setupHelmDiffTest(t) |
nothing calls this directly
no test coverage detected