add tests for utils

This commit is contained in:
Marten Seemann
2016-04-14 11:30:22 +07:00
parent 98cd4aa513
commit 4f39e0f14d
3 changed files with 99 additions and 0 deletions

13
utils/utils_suite_test.go Normal file
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")
}