1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 17:37:12 +00:00
kyverno/vendor/gotest.tools/assert/cmd/gty-migrate-from-testify/doc.go
2019-06-03 15:14:06 -07:00

22 lines
489 B
Go

/*
Command gty-migrate-from-testify migrates packages from
testify/assert and testify/require to gotest.tools/assert.
$ go get gotest.tools/assert/cmd/gty-migrate-from-testify
Usage:
gty-migrate-from-testify [OPTIONS] PACKAGE [PACKAGE...]
See --help for full usage.
To run on all packages (including external test packages) use:
go list \
-f '{{.ImportPath}} {{if .XTestGoFiles}}{{"\n"}}{{.ImportPath}}_test{{end}}' \
./... | xargs gty-migrate-from-testify
*/
package main