(client *fake.FakeClient)
| 32 | ) |
| 33 | |
| 34 | func commonMockClient(client *fake.FakeClient) { |
| 35 | // TODO: Replace mock.Anything calls with specific values |
| 36 | client.On("Head", mock.Anything).Return(&v1.Descriptor{MediaType: types.OCIManifestSchema1}, nil) |
| 37 | } |
| 38 | |
| 39 | type MockDownloader struct { |
| 40 | mock.Mock |
no outgoing calls
no test coverage detected