1
0
mirror of https://github.com/go-task/task.git synced 2025-06-17 00:17:51 +02:00

fix travis again

something was wrong with .gitignore rules
This commit is contained in:
Andrey Nering
2017-07-30 21:00:50 -03:00
parent 1eccb61d44
commit f2416d68b8
82 changed files with 6667 additions and 6 deletions

View File

@ -0,0 +1,16 @@
package assert
// Assertions provides assertion methods around the
// TestingT interface.
type Assertions struct {
t TestingT
}
// New makes a new Assertions object for the specified TestingT.
func New(t TestingT) *Assertions {
return &Assertions{
t: t,
}
}
//go:generate go run ../_codegen/main.go -output-package=assert -template=assertion_forward.go.tmpl