1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 18:06:55 +00:00
kyverno/test/e2e/framework/step/by.go

13 lines
195 B
Go
Raw Normal View History

package step
import (
"github.com/kyverno/kyverno/test/e2e/framework/client"
"github.com/onsi/ginkgo"
)
func By(message string) Step {
return func(client.Client) {
ginkgo.By(message)
}
}