noopKeychain is a zero-side-effect KeychainAccess for exercising WithKeychain without touching the platform keychain.
| 15 | // noopKeychain is a zero-side-effect KeychainAccess for exercising |
| 16 | // WithKeychain without touching the platform keychain. |
| 17 | type noopKeychain struct{} |
| 18 | |
| 19 | func (noopKeychain) Get(service, account string) (string, error) { return "", nil } |
| 20 | func (noopKeychain) Set(service, account, value string) error { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected