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

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

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

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