diff --git a/pkg/bundle/tests/tests.go b/pkg/bundle/tests/tests.go deleted file mode 100644 index 9e677f204..000000000 --- a/pkg/bundle/tests/tests.go +++ /dev/null @@ -1,15 +0,0 @@ -package tests - -import ( - "github.com/pluralsh/plural-cli/pkg/api" - "github.com/pluralsh/plural-cli/pkg/manifest" - "github.com/pluralsh/plural-cli/pkg/utils" -) - -func Perform(ctx *manifest.Context, test *api.RecipeTest) error { - utils.Highlight("\nRunning %s test [%s] ==>\n", test.Name, test.Type) - if test.Type == "GIT" { - return testGit(ctx, test) - } - return nil -} diff --git a/pkg/crypto/hmac.go b/pkg/crypto/hmac.go deleted file mode 100644 index ea979c231..000000000 --- a/pkg/crypto/hmac.go +++ /dev/null @@ -1,13 +0,0 @@ -package crypto - -import ( - "crypto/hmac" - "crypto/sha1" - "encoding/hex" -) - -func Hmac(data string, secret string) string { - h := hmac.New(sha1.New, []byte(secret)) - h.Write([]byte(data)) - return hex.EncodeToString(h.Sum(nil)) -}