github.com/onsi/ginkgo@v1.16.6-0.20211118180735-4e1925ba4c95/integration/_fixtures/no_test_fn_fixture/no_test_fn_test.go (about)

     1  package no_test_fn_test
     2  
     3  import (
     4  	. "github.com/onsi/ginkgo"
     5  	. "github.com/onsi/ginkgo/integration/_fixtures/no_test_fn_fixture"
     6  	. "github.com/onsi/gomega"
     7  )
     8  
     9  var _ = Describe("NoTestFn", func() {
    10  	It("should proxy strings", func() {
    11  		Ω(StringIdentity("foo")).Should(Equal("foo"))
    12  	})
    13  })