(t *testing.T)
| 38 | } |
| 39 | |
| 40 | func TestPullSetRegistryClient(t *testing.T) { |
| 41 | config := actionConfigFixture(t) |
| 42 | client := NewPull(WithConfig(config)) |
| 43 | |
| 44 | registryClient := ®istry.Client{} |
| 45 | client.SetRegistryClient(registryClient) |
| 46 | assert.Equal(t, registryClient, client.cfg.RegistryClient) |
| 47 | } |
| 48 | |
| 49 | func TestPullRun_ChartNotFound(t *testing.T) { |
| 50 | srv, err := startLocalServerForTests(t, nil) |
nothing calls this directly
no test coverage detected
searching dependent graphs…