summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/integration/_fixtures/skip_fixture/skip_fixture_test.go
blob: e406aeb46d8879458b030da4d6531d14932b25d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package fail_fixture_test

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

var _ = It("handles top level skips", func() {
	Skip("a top level skip on line 9")
	println("NEVER SEE THIS")
})

var _ = It("handles async top level skips", func(done Done) {
	Skip("an async top level skip on line 14")
	println("NEVER SEE THIS")
}, 0.1)

var _ = It("SKIP in a goroutine", func(done Done) {
	go func() {
		defer GinkgoRecover()
		Skip("a top level goroutine skip on line 21")
		println("NEVER SEE THIS")
	}()
}, 0.1)

var _ = Describe("Excercising different skip modes", func() {
	It("synchronous skip", func() {
		Skip("a sync SKIP")
		println("NEVER SEE THIS")
	})

	It("async skip", func(done Done) {
		Skip("an async SKIP")
		println("NEVER SEE THIS")
	}, 0.1)

	It("SKIP in a goroutine", func(done Done) {
		go func() {
			defer GinkgoRecover()
			Skip("a goroutine SKIP")
			println("NEVER SEE THIS")
		}()
	}, 0.1)

	Measure("a SKIP measure", func(Benchmarker) {
		Skip("a measure SKIP")
		println("NEVER SEE THIS")
	}, 1)
})

var _ = Describe("SKIP in a BeforeEach", func() {
	BeforeEach(func() {
		Skip("a BeforeEach SKIP")
		println("NEVER SEE THIS")
	})

	It("a SKIP BeforeEach", func() {
		println("NEVER SEE THIS")
	})
})

var _ = Describe("SKIP in an AfterEach", func() {
	AfterEach(func() {
		Skip("an AfterEach SKIP")
		println("NEVER SEE THIS")
	})

	It("a SKIP AfterEach", func() {
		Expect(true).To(BeTrue())
	})
})