summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/stretchr/testify/assert/errors.go
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-08-08 17:40:46 -0500
committerGitHub <noreply@github.com>2017-08-08 17:40:46 -0500
commit6b741c4cea36f54b8f20c4a3e5871f00123db185 (patch)
treea10eeddd277c4eba48a27431ead816561a20f159 /vendor/github.com/stretchr/testify/assert/errors.go
parentc42510a7f4cf87d1dd7f7339633f06df86f25cce (diff)
downloadchat-6b741c4cea36f54b8f20c4a3e5871f00123db185.tar.gz
chat-6b741c4cea36f54b8f20c4a3e5871f00123db185.tar.bz2
chat-6b741c4cea36f54b8f20c4a3e5871f00123db185.zip
testify (#7116)
Diffstat (limited to 'vendor/github.com/stretchr/testify/assert/errors.go')
-rw-r--r--vendor/github.com/stretchr/testify/assert/errors.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/stretchr/testify/assert/errors.go b/vendor/github.com/stretchr/testify/assert/errors.go
new file mode 100644
index 000000000..ac9dc9d1d
--- /dev/null
+++ b/vendor/github.com/stretchr/testify/assert/errors.go
@@ -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")