1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-07 00:17:13 +00:00
kyverno/pkg/testrunner/testrunner_test.go
2019-08-29 11:44:50 -07:00

18 lines
345 B
Go

package testrunner
import "testing"
// func TestCLI(t *testing.T) {
// //https://github.com/nirmata/kyverno/issues/301
// runner(t, "/test/scenarios/cli")
// }
func Test_Devlop(t *testing.T) {
//load scenario
scenario, err := loadScenario(t, "/test/scenarios/test/s1.yaml")
if err != nil {
t.Error(err)
}
runScenario(t, scenario)
}