mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
19 lines
325 B
Go
19 lines
325 B
Go
package test
|
|
|
|
import (
|
|
"path/filepath"
|
|
|
|
"github.com/go-git/go-billy/v5"
|
|
testapi "github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/apis/test"
|
|
)
|
|
|
|
type TestCase struct {
|
|
Path string
|
|
Fs billy.Filesystem
|
|
Test *testapi.Test
|
|
Err error
|
|
}
|
|
|
|
func (tc TestCase) Dir() string {
|
|
return filepath.Clean(filepath.Dir(tc.Path))
|
|
}
|