This commit is contained in:
jackspirou
2016-01-29 16:23:00 -06:00
parent da77b90adc
commit aaa07a77dc
5 changed files with 86 additions and 1 deletions

9
main_test.go Normal file
View File

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