Files
web-core-fr-gp/auth/pass_test.go
T

22 lines
323 B
Go
Raw Normal View History

2015-07-29 17:40:41 -04:00
package auth
import "testing"
const pass = "password"
var hash []byte
func TestHash(t *testing.T) {
var err error
hash, err = HashPass([]byte(pass))
if err != nil {
t.Error("Password hash failed.")
}
}
func TestAuth(t *testing.T) {
if !Authenticated(hash, []byte(pass)) {
t.Error("Didn't authenticate.")
}
}