stubKeychain is a minimal KeychainAccess that always returns ErrNotFound.
| 14 | |
| 15 | // stubKeychain is a minimal KeychainAccess that always returns ErrNotFound. |
| 16 | type stubKeychain struct{} |
| 17 | |
| 18 | func (stubKeychain) Get(service, account string) (string, error) { |
| 19 | return "", keychain.ErrNotFound |
nothing calls this directly
no outgoing calls
no test coverage detected