| 18 | } |
| 19 | |
| 20 | type DummyAuth struct { |
| 21 | Config auth.Config |
| 22 | Request *http.Request |
| 23 | Response *http.Response |
| 24 | Error error |
| 25 | } |
| 26 | |
| 27 | func (d *DummyAuth) Do(req *http.Request) (*http.Response, error) { |
| 28 | d.Request = req |
nothing calls this directly
no outgoing calls
no test coverage detected