Files
zot/pkg/test/mocks/lint_mock.go
T
2024-01-31 20:34:07 -08:00

21 lines
498 B
Go

package mocks
import (
godigest "github.com/opencontainers/go-digest"
storageTypes "zotregistry.dev/zot/pkg/storage/types"
)
type MockedLint struct {
LintFn func(repo string, manifestDigest godigest.Digest, imageStore storageTypes.ImageStore) (bool, error)
}
func (lint MockedLint) Lint(repo string, manifestDigest godigest.Digest, imageStore storageTypes.ImageStore,
) (bool, error) {
if lint.LintFn != nil {
return lint.LintFn(repo, manifestDigest, imageStore)
}
return false, nil
}