summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/onsi/gomega/gstruct/ignore_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/onsi/gomega/gstruct/ignore_test.go')
-rw-r--r--vendor/github.com/onsi/gomega/gstruct/ignore_test.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/github.com/onsi/gomega/gstruct/ignore_test.go b/vendor/github.com/onsi/gomega/gstruct/ignore_test.go
new file mode 100644
index 0000000..70e1d40
--- /dev/null
+++ b/vendor/github.com/onsi/gomega/gstruct/ignore_test.go
@@ -0,0 +1,23 @@
+package gstruct_test
+
+import (
+ . "github.com/onsi/ginkgo"
+ . "github.com/onsi/gomega"
+ . "github.com/onsi/gomega/gstruct"
+)
+
+var _ = Describe("Ignore", func() {
+ It("should always succeed", func() {
+ Ω(nil).Should(Ignore())
+ Ω(struct{}{}).Should(Ignore())
+ Ω(0).Should(Ignore())
+ Ω(false).Should(Ignore())
+ })
+
+ It("should always fail", func() {
+ Ω(nil).ShouldNot(Reject())
+ Ω(struct{}{}).ShouldNot(Reject())
+ Ω(1).ShouldNot(Reject())
+ Ω(true).ShouldNot(Reject())
+ })
+})