aboutsummaryrefslogtreecommitdiffstats
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, 0 insertions, 23 deletions
diff --git a/vendor/github.com/onsi/gomega/gstruct/ignore_test.go b/vendor/github.com/onsi/gomega/gstruct/ignore_test.go
deleted file mode 100644
index 70e1d40..0000000
--- a/vendor/github.com/onsi/gomega/gstruct/ignore_test.go
+++ /dev/null
@@ -1,23 +0,0 @@
-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())
- })
-})