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