aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/_nuts/github.com/stretchr/testify/package_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/_nuts/github.com/stretchr/testify/package_test.go')
-rw-r--r--vendor/_nuts/github.com/stretchr/testify/package_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/_nuts/github.com/stretchr/testify/package_test.go b/vendor/_nuts/github.com/stretchr/testify/package_test.go
new file mode 100644
index 0000000..7ac5d6d
--- /dev/null
+++ b/vendor/_nuts/github.com/stretchr/testify/package_test.go
@@ -0,0 +1,12 @@
+package testify
+
+import (
+ "github.com/stretchr/testify/assert"
+ "testing"
+)
+
+func TestImports(t *testing.T) {
+ if assert.Equal(t, 1, 1) != true {
+ t.Error("Something is wrong.")
+ }
+}