Uniform trailing slashes, client.URL()

This commit is contained in:
Matthew Dillon 2015-01-12 12:58:48 -09:00
parent 980367e527
commit 02f46aab11
3 changed files with 16 additions and 8 deletions

View file

@ -10,6 +10,7 @@ import (
"github.com/thermokarst/bactdb/datastore"
"github.com/thermokarst/bactdb/models"
"github.com/thermokarst/bactdb/router"
)
func init() {
@ -29,7 +30,8 @@ var (
func setup() {
store = datastore.NewMockDatastore()
SetupCerts("../keys/")
resp, _ := httpClient.PostForm(apiClient.BaseURL.String()+"authenticate/",
u, _ := apiClient.URL(router.GetToken, nil, nil)
resp, _ := httpClient.PostForm(u.String(),
url.Values{"username": {"test_user"}, "password": {"password"}})
defer resp.Body.Close()
}