testing: move echosvr into testutils

This commit is contained in:
Gabriel Rosenhouse
2017-09-06 19:10:20 -07:00
parent 1396ab0bab
commit d8f2fd7a3c
4 changed files with 9 additions and 3 deletions

View File

@ -0,0 +1,13 @@
package main_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestEchosvr(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Testutils Echosvr Suite")
}