| 283 | end |
| 284 | |
| 285 | def close |
| 286 | return if @http.nil? |
| 287 | @http.finish if @http.started? |
| 288 | @http = nil |
| 289 | end |
| 290 | |
| 291 | def request(method, headers, url, body: nil, &block) |
| 292 | request = build_request(method, url, headers, body: body) |
no test coverage detected