(t *testing.T)
| 1123 | } |
| 1124 | |
| 1125 | func TestInstallSetRegistryClient(t *testing.T) { |
| 1126 | config := actionConfigFixture(t) |
| 1127 | instAction := NewInstall(config) |
| 1128 | |
| 1129 | registryClient := ®istry.Client{} |
| 1130 | instAction.SetRegistryClient(registryClient) |
| 1131 | |
| 1132 | assert.Equal(t, registryClient, instAction.GetRegistryClient()) |
| 1133 | } |
| 1134 | |
| 1135 | func TestInstallCRDs(t *testing.T) { |
| 1136 | config := actionConfigFixtureWithDummyResources(t, createDummyCRDList(false)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…