Add missing mock method to fix build for PR #185.

This commit is contained in:
J.C. Jones 2015-05-14 10:25:40 -07:00
parent 6be5c4910e
commit b43e7de8dc
1 changed files with 4 additions and 0 deletions

View File

@ -53,6 +53,10 @@ func (sa *MockSA) GetCertificateStatus(string) (core.CertificateStatus, error) {
return core.CertificateStatus{}, nil
}
func (sa *MockSA) AlreadyDeniedCSR([]string) (bool, error) {
return false, nil
}
func makeBody(s string) io.ReadCloser {
return ioutil.NopCloser(strings.NewReader(s))
}