
- bump to go 1.10 - Add a linker tag with the build version - Remove fastbuild, go builds are cached now - Use better ginkgo suite names
14 lines
199 B
Go
14 lines
199 B
Go
package main_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestEchosvr(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "pkg/testutils/echosvr")
|
|
}
|