Vendor dependencies (#3)

This commit is contained in:
Adrian Macneil 2016-08-07 23:19:39 -07:00 committed by GitHub
parent df712a3e98
commit 31ad587414
119 changed files with 222298 additions and 3 deletions

10
vendor/github.com/stretchr/testify/assert/errors.go generated vendored Normal file
View file

@ -0,0 +1,10 @@
package assert
import (
"errors"
)
// AnError is an error instance useful for testing. If the code does not care
// about error specifics, and only needs to return the error for example, this
// error should be used to make the test code more readable.
var AnError = errors.New("assert.AnError general error for testing")