vendor: include require package from testify

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day
2017-11-01 16:28:30 -07:00
committed by Michael Crosby
parent 682151b166
commit f4fdb940ed
5 changed files with 905 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package require
// TestingT is an interface wrapper around *testing.T
type TestingT interface {
Errorf(format string, args ...interface{})
FailNow()
}
//go:generate go run ../_codegen/main.go -output-package=require -template=require.go.tmpl