summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/42wim/go-gitter/test_utils.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-11-02 16:12:43 +0100
committerWim <wim@42.be>2016-11-02 16:13:22 +0100
commit1b1589713592ec9d8f1945e4e61cac423e3e245e (patch)
treee92e23f00375f4bb71e0dcff541bf729f47147ac /vendor/github.com/42wim/go-gitter/test_utils.go
parent8e606e3cef5f36cff1a14c25fc1915ecfd30e054 (diff)
downloadmatterbridge-msglm-1b1589713592ec9d8f1945e4e61cac423e3e245e.tar.gz
matterbridge-msglm-1b1589713592ec9d8f1945e4e61cac423e3e245e.tar.bz2
matterbridge-msglm-1b1589713592ec9d8f1945e4e61cac423e3e245e.zip
Fix tight loop (gitter). Closes #68.
Diffstat (limited to 'vendor/github.com/42wim/go-gitter/test_utils.go')
-rw-r--r--vendor/github.com/42wim/go-gitter/test_utils.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/github.com/42wim/go-gitter/test_utils.go b/vendor/github.com/42wim/go-gitter/test_utils.go
new file mode 100644
index 00000000..6703da2e
--- /dev/null
+++ b/vendor/github.com/42wim/go-gitter/test_utils.go
@@ -0,0 +1,30 @@
+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()
+}