(t *testing.T)
| 47 | } |
| 48 | |
| 49 | func TestPushNonExistentArtifact(t *testing.T) { |
| 50 | t.Parallel() |
| 51 | err := Push(t.Context(), "registry.example.com/test:latest") |
| 52 | require.Error(t, err) |
| 53 | |
| 54 | err = Push(t.Context(), "registry.example.com/test:latest") |
| 55 | require.Error(t, err) |
| 56 | } |
| 57 | |
| 58 | func TestPushWithOptions(t *testing.T) { |
| 59 | t.Parallel() |