(url string, body map[string]string, cookies []*http.Cookie, t *testing.T)
| 566 | } |
| 567 | |
| 568 | func httpPost(url string, body map[string]string, cookies []*http.Cookie, t *testing.T) *http.Response { |
| 569 | t.Helper() |
| 570 | return httpRequest(http.MethodPost, url, body, "", "", "", "", "", "", cookies, t) |
| 571 | } |
| 572 | |
| 573 | func TestHTTPLogin(t *testing.T) { |
| 574 | // This test intentionally does not use t.Parallel() |
no test coverage detected