(t *testing.T)
| 507 | } |
| 508 | |
| 509 | func TestNormalizeReference_InvalidReference(t *testing.T) { |
| 510 | t.Parallel() |
| 511 | |
| 512 | _, err := NormalizeReference(":::invalid") |
| 513 | require.Error(t, err) |
| 514 | } |
| 515 | |
| 516 | func TestIsDigestReference(t *testing.T) { |
| 517 | t.Parallel() |
nothing calls this directly
no test coverage detected