(t *testing.T)
| 168 | } |
| 169 | |
| 170 | func installAction(t *testing.T) *Install { |
| 171 | t.Helper() |
| 172 | config := actionConfigFixture(t) |
| 173 | instAction := NewInstall(config) |
| 174 | instAction.Namespace = "spaced" |
| 175 | instAction.ReleaseName = "test-install-release" |
| 176 | |
| 177 | return instAction |
| 178 | } |
| 179 | |
| 180 | func TestInstallRelease(t *testing.T) { |
| 181 | is := assert.New(t) |
no test coverage detected
searching dependent graphs…