530729e
1
2
3
4
5
6
7
8
9
10
11
12
13
package auth import ( "testing" "github.com/stretchr/testify/assert" ) func TestEncodePassword(t *testing.T) { pwd := EncodePassword([]byte("123456")) assert.Equal(t, comparePassword("123456", pwd), true) }