(r *sling.Sling)
| 31 | var BinaryPrefix = "" |
| 32 | |
| 33 | func DoRequest(r *sling.Sling) *http.Response { |
| 34 | response, err := doRequest(r) |
| 35 | Expect(err).To(BeNil()) |
| 36 | return response |
| 37 | } |
| 38 | |
| 39 | func doRequest(r *sling.Sling) (*http.Response, error) { |
| 40 | req, err := r.Request() |
no test coverage detected