4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-27 20:29:24 +00:00

Use github.com/42wim/go-gitter for now

This commit is contained in:
Wim
2017-08-28 22:59:52 +02:00
parent 7a86044f7a
commit e59d338d4e
7 changed files with 72 additions and 13 deletions

30
vendor/github.com/42wim/go-gitter/test_utils.go generated vendored Normal file
View File

@ -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()
}