move integration tests to separate package

This commit is contained in:
Marten Seemann
2016-06-05 16:51:33 +07:00
parent 6a46465092
commit d2c1f0c71a
3 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1 @@
package integrationtests

View File

@@ -1,4 +1,4 @@
package h2quic_test package integrationtests
import ( import (
"bytes" "bytes"

View File

@@ -0,0 +1,13 @@
package integrationtests
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestIntegration(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Integration Tests Suite")
}