bump(github.com/stretchr/testify): 9cc77fa25329013ce07362c7742952ff887361f2

This commit is contained in:
Brandon Philips
2014-02-02 16:39:57 -08:00
parent 2557992b70
commit d7d20d1c3d
15 changed files with 951 additions and 11 deletions

View File

@ -0,0 +1,10 @@
package assert
import (
"errors"
)
// AnError is an erorr 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 error = errors.New("assert.AnError general error for testing.")