summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/D/D_test.go
blob: 097945bf900c0f64ef3a2155f06807ce8f683337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package D_test

import (
	. "github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/C"

	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"
)

var _ = Describe("D", func() {
	It("should do it", func() {
		Ω(DoIt()).Should(Equal("done!"))
	})
})