woodpecker/vendor/github.com/Bugagazavr/go-gitlab-client/helper_test.go

17 lines
348 B
Go
Raw Normal View History

2015-07-26 23:25:20 +00:00
package gogitlab
import (
"io/ioutil"
"net/http"
"net/http/httptest"
)
func Stub(filename string) (*httptest.Server, *Gitlab) {
stub, _ := ioutil.ReadFile(filename)
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(stub))
}))
gitlab := NewGitlab(ts.URL, "", "")
return ts, gitlab
}