...
1
2
3 package focused_fixture_test
4
5 import (
6 . "github.com/onsi/ginkgo/v2"
7 )
8
9 var _ = Describe("FocusedFixture", func() {
10 FDescribe("focused", func() {
11 It("focused", func() {
12
13 })
14 })
15
16 FContext("focused", func() {
17 It("focused", func() {
18
19 })
20 })
21
22 FWhen("focused", func() {
23 It("focused", func() {
24
25 })
26 })
27
28 FIt("focused", func() {
29
30 })
31
32 It("focused", Focus, func() {
33
34 })
35
36 FSpecify("focused", func() {
37
38 })
39
40 FDescribeTable("focused",
41 func() {},
42 Entry("focused"),
43 )
44
45 DescribeTable("focused",
46 func() {},
47 FEntry("focused"),
48 )
49
50 Describe("not focused", func() {
51 It("not focused", func() {
52
53 })
54 })
55
56 Context("not focused", func() {
57 It("not focused", func() {
58
59 })
60 })
61
62 It("not focused", func() {
63
64 })
65
66 DescribeTable("not focused",
67 func() {},
68 Entry("not focused"),
69 )
70 })
71
View as plain text