(status int, req *http.Request, body io.Reader)
| 58 | } |
| 59 | |
| 60 | func httpResponse(status int, req *http.Request, body io.Reader) *http.Response { |
| 61 | return &http.Response{ |
| 62 | StatusCode: status, |
| 63 | Request: req, |
| 64 | Body: io.NopCloser(body), |
| 65 | Header: http.Header{}, |
| 66 | } |
| 67 | } |
no outgoing calls
no test coverage detected