(t *testing.T)
| 49 | } |
| 50 | |
| 51 | func TestHelmDiff(t *testing.T) { |
| 52 | h := setupHelmDiffTest(t) |
| 53 | defer h.cleanup() |
| 54 | |
| 55 | os.Args = []string{"helm-diff", "upgrade", "-f", "test/testdata/test-values.yaml", "test-release", "test/testdata/test-chart"} |
| 56 | require.NoError(t, cmd.New().Execute()) |
| 57 | } |
| 58 | |
| 59 | func TestHelmDiffWithKubeContext(t *testing.T) { |
| 60 | h := setupHelmDiffTest(t) |
nothing calls this directly
no test coverage detected