summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/integration/_fixtures/failing_after_suite/failing_after_suite_test.go
blob: 3902ec6c58ebe04474e1d952ba24174ecbb0f4b3 (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 run", func() {
		println("A TEST")
	})

	It("should run", func() {
		println("A TEST")
	})
})