mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
13 lines
195 B
Go
13 lines
195 B
Go
|
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)
|
||
|
}
|
||
|
}
|