summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/42wim/go-gitter/test_utils.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-08-28 22:59:52 +0200
committerWim <wim@42.be>2017-08-28 23:07:11 +0200
commite59d338d4e43ed8cad3227186d0c341a44abedf6 (patch)
tree4f2d36b824db7eb0a79fb8f1cd859e89c4b347fd /vendor/github.com/42wim/go-gitter/test_utils.go
parent7a86044f7aa8ff70c37be1b806718e39291c0494 (diff)
downloadmatterbridge-msglm-e59d338d4e43ed8cad3227186d0c341a44abedf6.tar.gz
matterbridge-msglm-e59d338d4e43ed8cad3227186d0c341a44abedf6.tar.bz2
matterbridge-msglm-e59d338d4e43ed8cad3227186d0c341a44abedf6.zip
Use github.com/42wim/go-gitter for now
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()
+}