Example #1
0
func TestGosseract_Greeting(t *testing.T) {
	assert(
		t,
		gosseract.Greeting(),
		"Hello,Gosseract!",
	)
}
Example #2
0
func TestHelloGosseract(t *testing.T) {
	Describe(t, "HelloGosseract!!", func() {
		It("should say \"Hello,Gosseract!\"", func() {
			Expect(gosseract.Greeting()).To(Equal, "Hello,Gosseract!")
		})
	})
}