mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
15 lines
251 B
Go
15 lines
251 B
Go
package testrunner
|
|
|
|
import "testing"
|
|
|
|
func TestMutate(t *testing.T) {
|
|
runner(t, "/test/scenarios/mutate")
|
|
}
|
|
|
|
func TestCLI(t *testing.T) {
|
|
runner(t, "/test/scenarios/cli")
|
|
}
|
|
|
|
func TestGenerate(t *testing.T) {
|
|
runner(t, "/test/scenarios/generate")
|
|
}
|