(t *testing.T)
| 73 | } |
| 74 | |
| 75 | func TestHelmDiffRevisionWithKubeContext(t *testing.T) { |
| 76 | h := setupHelmDiffTest(t) |
| 77 | defer h.cleanup() |
| 78 | |
| 79 | os.Args = []string{"helm-diff", "revision", "--kube-context", "test-context", "test-release", "2"} |
| 80 | require.NoError(t, cmd.New().Execute()) |
| 81 | } |
| 82 | |
| 83 | func TestHelmDiffRollbackWithKubeContext(t *testing.T) { |
| 84 | h := setupHelmDiffTest(t) |
nothing calls this directly
no test coverage detected