14 lines
184 B
Go
14 lines
184 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
. "github.com/onsi/gomega"
|
||
|
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestCrypto(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "Utils Suite")
|
||
|
}
|