(ref name.Reference)
| 126 | } |
| 127 | |
| 128 | func (m *FakeClient) ResolveDigest(ref name.Reference) (string, error) { |
| 129 | args := m.Called(ref) |
| 130 | |
| 131 | return args.String(0), args.Error(1) |
| 132 | } |
| 133 | |
| 134 | func (m *FakeClient) Image(ref name.Reference) (v1.Image, error) { |
| 135 | args := m.Called(ref) |