summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go')
-rw-r--r--vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go b/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go
new file mode 100644
index 000000000..162a590c6
--- /dev/null
+++ b/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go
@@ -0,0 +1,15 @@
+package assert
+
+import (
+ "testing"
+)
+
+func TestLineNumbers(t *testing.T) {
+ Equal(t, "foo", "foo", "msg!")
+ //Equal(t, "foo", "bar", "this should blow up")
+}
+
+func TestNotEqual(t *testing.T) {
+ NotEqual(t, "foo", "bar", "msg!")
+ //NotEqual(t, "foo", "foo", "this should blow up")
+}