...

Source file src/github.com/onsi/ginkgo/v2/integration/_fixtures/focused_fixture/internal/focused_fixture_test.go

Documentation: github.com/onsi/ginkgo/v2/integration/_fixtures/focused_fixture/internal

     1  package focused_fixture_test
     2  
     3  import (
     4  	. "github.com/onsi/ginkgo/v2"
     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  	It("focused", Focus, func() {
    31  
    32  	})
    33  
    34  	FSpecify("focused", func() {
    35  
    36  	})
    37  
    38  	FDescribeTable("focused",
    39  		func() {},
    40  		Entry("focused"),
    41  	)
    42  
    43  	DescribeTable("focused",
    44  		func() {},
    45  		FEntry("focused"),
    46  	)
    47  
    48  	Describe("not focused", func() {
    49  		It("not focused", func() {
    50  
    51  		})
    52  	})
    53  
    54  	Context("not focused", func() {
    55  		It("not focused", func() {
    56  
    57  		})
    58  	})
    59  
    60  	It("not focused", func() {
    61  
    62  	})
    63  
    64  	DescribeTable("not focused",
    65  		func() {},
    66  		Entry("not focused"),
    67  	)
    68  })
    69  

View as plain text