16 lines
272 B
Go
16 lines
272 B
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestRandomPassword_generates_15char_passwords(t *testing.T) {
|
||
|
for i := 0; i < 100; i++ {
|
||
|
pw := RandomPassword()
|
||
|
t.Logf("pw: %v", pw)
|
||
|
if len(pw) != 15 {
|
||
|
t.Fatalf("len(pw)!=15, but %v: %v (%v)", len(pw), pw, i)
|
||
|
}
|
||
|
}
|
||
|
}
|