summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/integration/_fixtures/failing_before_suite/failing_before_suite_test.go
blob: e8697c64aecef39bc6d703464384f03b8084ff73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package failing_before_suite_test

import (
	. "github.com/onsi/ginkgo"
)

var _ = Describe("FailingBeforeSuite", func() {
	It("should never run", func() {
		println("NEVER SEE THIS")
	})

	It("should never run", func() {
		println("NEVER SEE THIS")
	})
})