summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/integration/_fixtures/passing_suite_setup/passing_suite_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/onsi/ginkgo/integration/_fixtures/passing_suite_setup/passing_suite_test.go')
-rw-r--r--vendor/github.com/onsi/ginkgo/integration/_fixtures/passing_suite_setup/passing_suite_test.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/github.com/onsi/ginkgo/integration/_fixtures/passing_suite_setup/passing_suite_test.go b/vendor/github.com/onsi/ginkgo/integration/_fixtures/passing_suite_setup/passing_suite_test.go
new file mode 100644
index 000000000..f139e1d22
--- /dev/null
+++ b/vendor/github.com/onsi/ginkgo/integration/_fixtures/passing_suite_setup/passing_suite_test.go
@@ -0,0 +1,28 @@
+package passing_before_suite_test
+
+import (
+ . "github.com/onsi/ginkgo"
+ . "github.com/onsi/gomega"
+)
+
+var _ = Describe("PassingSuiteSetup", func() {
+ It("should pass", func() {
+ Ω(a).Should(Equal("ran before suite"))
+ Ω(b).Should(BeEmpty())
+ })
+
+ It("should pass", func() {
+ Ω(a).Should(Equal("ran before suite"))
+ Ω(b).Should(BeEmpty())
+ })
+
+ It("should pass", func() {
+ Ω(a).Should(Equal("ran before suite"))
+ Ω(b).Should(BeEmpty())
+ })
+
+ It("should pass", func() {
+ Ω(a).Should(Equal("ran before suite"))
+ Ω(b).Should(BeEmpty())
+ })
+})