(method, path, body string)
| 1429 | } |
| 1430 | |
| 1431 | func requestWithBody(method, path, body string) (req *http.Request) { |
| 1432 | req, _ = http.NewRequest(method, path, bytes.NewBufferString(body)) |
| 1433 | return |
| 1434 | } |
no outgoing calls
no test coverage detected