move crypto handshake stuff to its own package

This commit is contained in:
Lucas Clemente
2016-04-14 19:50:04 +02:00
parent 04921c29af
commit 0febba87ba
7 changed files with 122 additions and 106 deletions

View File

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