aboutsummaryrefslogtreecommitdiff
path: root/main_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'main_test.go')
-rw-r--r--main_test.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/main_test.go b/main_test.go
deleted file mode 100644
index 1ea7dc7..0000000
--- a/main_test.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package main
-
-import (
- "testing"
-
- "golang.org/x/crypto/bcrypt"
-)
-
-func TestBcrypt(t *testing.T) {
- pw := "test"
- ret, err := bcrypt.GenerateFromPassword([]byte(pw), 10)
- if err != nil {
- t.Error(err)
- }
- t.Log(ret)
-}