(t *testing.T)
| 81 | } |
| 82 | |
| 83 | func TestHelmDiffRollbackWithKubeContext(t *testing.T) { |
| 84 | h := setupHelmDiffTest(t) |
| 85 | defer h.cleanup() |
| 86 | |
| 87 | os.Args = []string{"helm-diff", "rollback", "--kube-context", "test-context", "test-release", "2"} |
| 88 | require.NoError(t, cmd.New().Execute()) |
| 89 | } |
| 90 | |
| 91 | func TestHelmDiffReleaseWithKubeContext(t *testing.T) { |
| 92 | h := setupHelmDiffTest(t) |
nothing calls this directly
no test coverage detected