photoprism/pkg/rnd/passwd_test.go

20 lines
296 B
Go
Raw Normal View History

package rnd
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGeneratePasswd(t *testing.T) {
pw := GeneratePasswd()
t.Logf("password: %s", pw)
assert.Equal(t, 8, len(pw))
}
func BenchmarkGeneratePasswd(b *testing.B) {
for n := 0; n < b.N; n++ {
GeneratePasswd()
}
}