diff options
Diffstat (limited to 'vendor/github.com/42wim/go-gitter/test_utils.go')
-rw-r--r-- | vendor/github.com/42wim/go-gitter/test_utils.go | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/github.com/42wim/go-gitter/test_utils.go b/vendor/github.com/42wim/go-gitter/test_utils.go deleted file mode 100644 index 6703da2e..00000000 --- a/vendor/github.com/42wim/go-gitter/test_utils.go +++ /dev/null @@ -1,30 +0,0 @@ -package gitter - -import ( - "net/http" - "net/http/httptest" - "net/url" -) - -var ( - mux *http.ServeMux - gitter *Gitter - server *httptest.Server -) - -func setup() { - mux = http.NewServeMux() - server = httptest.NewServer(mux) - - gitter = New("abc") - - // Fake the API and Stream base URLs by using the test - // server URL instead. - url, _ := url.Parse(server.URL) - gitter.config.apiBaseURL = url.String() + "/" - gitter.config.streamBaseURL = url.String() + "/" -} - -func teardown() { - server.Close() -} |