1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package lib import ( "testing" "github.com/nsheridan/cashier/testdata" "golang.org/x/crypto/ssh" ) func TestGetPublicKey(t *testing.T) { t.Parallel() c, _, _, _, _ := ssh.ParseAuthorizedKey(testdata.Cert) if GetPublicKey(c.(*ssh.Certificate)) != string(testdata.Cert) { t.Fail() } }