1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 16:06:56 +00:00
kyverno/cmd/cli/kubectl-kyverno/test/test_case.go
Charles-Edouard Brétéché 173bb907b7
chore: add cli unit tests (#8326)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2023-09-10 22:03:24 +00:00

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))
}