drone-with-go/main_test.go

10 lines
171 B
Go
Raw Normal View History

2016-01-29 23:23:00 +01:00
package main
import "testing"
func TestHelloWorld(t *testing.T) {
if HelloWorld() != "hello world" {
t.Errorf("got %s expected %s", HelloWorld(), "hello world")
}
}