make utils an internal package

This commit is contained in:
Marten Seemann
2017-06-07 13:07:53 +02:00
parent 24d9ed2769
commit c0b09c8646
74 changed files with 51 additions and 52 deletions

View File

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