Files
crawlab/backend/utils/user_test.go
2019-08-18 19:07:59 +08:00

15 lines
242 B
Go

package utils
import (
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestEncryptPassword(t *testing.T) {
var passwd = "test"
Convey("Test EncryptPassword", t, func() {
res := EncryptPassword(passwd)
t.Log(res)
})
}