Add basic tests for DiffSect function

This commit is contained in:
2018-07-07 20:56:53 +01:00
parent a883e08a3f
commit 484eca552b
23 changed files with 6064 additions and 4 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")