chore: add tests for all utils, removed unused functions

This commit is contained in:
Deluan 2020-03-24 11:58:58 -04:00
parent b4c7cac964
commit 3cba5f70fd
7 changed files with 275 additions and 188 deletions

13
utils/utils_suite_test.go Normal file
View file

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