updating READMD.md

This commit is contained in:
jackspirou
2016-01-29 19:15:31 -06:00
parent e456f88f0f
commit 618f60fd11
2 changed files with 45 additions and 7 deletions

View File

@@ -1,6 +1,13 @@
package main
import "testing"
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
os.Exit(m.Run())
}
func TestHelloWorld(t *testing.T) {
if HelloWorld() != "hello world" {