drone-with-go/main_test.go
jackspirou aaa07a77dc init
2016-01-29 16:23:00 -06:00

10 lines
171 B
Go

package main
import "testing"
func TestHelloWorld(t *testing.T) {
if HelloWorld() != "hello world" {
t.Errorf("got %s expected %s", HelloWorld(), "hello world")
}
}