move UDP Proxy to subpackage in integration tests

This commit is contained in:
Marten Seemann
2016-08-01 12:21:36 +07:00
parent e8a2c497e9
commit aaeedafc21
5 changed files with 61 additions and 42 deletions

View File

@@ -0,0 +1,13 @@
package proxy
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestQuicGo(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "UDP Proxy")
}