summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/vendor/src/github.com/smartystreets/goconvey/examples/simple_example_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/gotools/vendor/src/github.com/smartystreets/goconvey/examples/simple_example_test.go')
-rw-r--r--src/mongo/gotools/vendor/src/github.com/smartystreets/goconvey/examples/simple_example_test.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/mongo/gotools/vendor/src/github.com/smartystreets/goconvey/examples/simple_example_test.go b/src/mongo/gotools/vendor/src/github.com/smartystreets/goconvey/examples/simple_example_test.go
new file mode 100644
index 00000000000..dadfd8136a3
--- /dev/null
+++ b/src/mongo/gotools/vendor/src/github.com/smartystreets/goconvey/examples/simple_example_test.go
@@ -0,0 +1,36 @@
+package examples
+
+import (
+ "testing"
+
+ . "github.com/smartystreets/goconvey/convey"
+)
+
+func TestIntegerManipulation(t *testing.T) {
+ t.Parallel()
+
+ Convey("Given a starting integer value", t, func() {
+ x := 42
+
+ Convey("When incremented", func() {
+ x++
+
+ Convey("The value should be greater by one", func() {
+ So(x, ShouldEqual, 43)
+ })
+ Convey("The value should NOT be what it used to be", func() {
+ So(x, ShouldNotEqual, 42)
+ })
+ })
+ Convey("When decremented", func() {
+ x--
+
+ Convey("The value should be lesser by one", func() {
+ So(x, ShouldEqual, 41)
+ })
+ Convey("The value should NOT be what it used to be", func() {
+ So(x, ShouldNotEqual, 42)
+ })
+ })
+ })
+}