github.com/onsi/ginkgo@v1.16.6-0.20211118180735-4e1925ba4c95/ginkgo/outline/_testdata/normal_test.go (about) 1 package example_test 2 3 import ( 4 . "github.com/onsi/ginkgo" 5 ) 6 7 var _ = Describe("NormalFixture", func() { 8 Describe("normal", func() { 9 It("normal", func() { 10 By("step 1") 11 By("step 2") 12 }) 13 }) 14 15 Context("normal", func() { 16 It("normal", func() { 17 18 }) 19 }) 20 21 When("normal", func() { 22 It("normal", func() { 23 24 }) 25 }) 26 27 It("normal", func() { 28 29 }) 30 31 Specify("normal", func() { 32 33 }) 34 35 DescribeTable("normal", 36 func() {}, 37 Entry("normal"), 38 ) 39 40 DescribeTable("normal", 41 func() {}, 42 Entry("normal"), 43 ) 44 })