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