admin / modules /auth /auth_test.go
AZLABS's picture
Upload folder using huggingface_hub
530729e verified
raw
history blame contribute delete
214 Bytes
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)
}