1package nested
2
3import (
4	. "github.com/onsi/ginkgo"
5)
6
7var _ = Describe("Testing with Ginkgo", func() {
8	It("something less important", func() {
9
10		whatever := &UselessStruct{}
11		GinkgoT().Fail(whatever.ImportantField != "SECRET_PASSWORD")
12	})
13})
14