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