| 31 | var errFake = errors.New("fake") |
| 32 | |
| 33 | type erroringKeeper struct { |
| 34 | driver.Keeper |
| 35 | } |
| 36 | |
| 37 | func (k *erroringKeeper) Decrypt(ctx context.Context, b []byte) ([]byte, error) { |
| 38 | return nil, errFake |
nothing calls this directly
no outgoing calls
no test coverage detected