1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-06 09:47:02 +01:00
Files
staebler 989532b57d Add some dependencies used for asset generation
- stretchr/testify
 - pborman/uuid
2018-08-22 10:54:35 -04:00

11 lines
326 B
Go

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")