1package tmp_test
2
3import (
4	. "github.com/onsi/ginkgo"
5)
6
7var _ = Describe("Testing with Ginkgo", func() {
8	It("something important", func() {
9
10		whatever := &UselessStruct{}
11		if whatever.ImportantField != "SECRET_PASSWORD" {
12			GinkgoT().Fail()
13		}
14	})
15})
16
17type UselessStruct struct {
18	ImportantField string
19}
20