dex/db/key_test.go

13 lines
212 B
Go
Raw Normal View History

2015-08-18 05:57:27 +05:30
package db
import (
"testing"
)
func TestNewPrivateKeySetRepoInvalidKey(t *testing.T) {
_, err := NewPrivateKeySetRepo(nil, false, []byte("sharks"))
2015-08-18 05:57:27 +05:30
if err == nil {
t.Fatalf("Expected non-nil error")
}
}