1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 09:56:55 +00:00
kyverno/test/e2e/validate/config.go

18 lines
449 B
Go
Raw Normal View History

package validate
// ValidateTests is E2E Test Config for validation
var ValidateTests = []struct {
//TestName - Name of the Test
TestName string
// Data - The Yaml file of the ClusterPolicy
Data []byte
// ResourceNamespace - Namespace of the Resource
ResourceNamespace string
}{
{
TestName: "test-validate-with-flux-and-variable-substitution",
Data: kyverno_2043_policy,
ResourceNamespace: "test-validate",
},
}