Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2017-06-14 20:11:56 +0300
committerNick Thomas <nick@gitlab.com>2017-06-15 19:40:43 +0300
commit3e4c8c7c8fd519cfba327cced38c81756dba816d (patch)
treeafaec1709558457705e1230239792f2ddb4dfe2c /helpers_test.go
parentd7de6b25b36ae245c9befdd09162a169b9d28651 (diff)
Add CORS support to GET requests
Diffstat (limited to 'helpers_test.go')
-rw-r--r--helpers_test.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/helpers_test.go b/helpers_test.go
index 60d04304..1dc31ef8 100644
--- a/helpers_test.go
+++ b/helpers_test.go
@@ -212,7 +212,11 @@ func GetPageFromListener(t *testing.T, spec ListenSpec, host, urlsuffix string)
req.Host = host
- t.Logf("curl -H'Host: %s' %s", host, url)
+ return DoPagesRequest(t, req)
+}
+
+func DoPagesRequest(t *testing.T, req *http.Request) (*http.Response, error) {
+ t.Logf("curl -X %s -H'Host: %s' %s", req.Method, req.Host, req.URL)
return InsecureHTTPSClient.Do(req)
}