Versions in this module Expand all Collapse all v0 v0.12.0 Mar 25, 2015 Changes in this version + var TestSuites []interface + type TestRequest struct + func (r *TestRequest) MakeRequest() + func (r *TestRequest) Send() + type TestSuite struct + Client *http.Client + Response *http.Response + ResponseBody []byte + Session revel.Session + func NewTestSuite() TestSuite + func (t *TestSuite) Assert(exp bool) + func (t *TestSuite) AssertContains(s string) + func (t *TestSuite) AssertContainsRegex(regex string) + func (t *TestSuite) AssertContentType(contentType string) + func (t *TestSuite) AssertEqual(expected, actual interface{}) + func (t *TestSuite) AssertHeader(name, value string) + func (t *TestSuite) AssertNotContains(s string) + func (t *TestSuite) AssertNotEqual(expected, actual interface{}) + func (t *TestSuite) AssertNotFound() + func (t *TestSuite) AssertOk() + func (t *TestSuite) AssertStatus(status int) + func (t *TestSuite) Assertf(exp bool, formatStr string, args ...interface{}) + func (t *TestSuite) BaseUrl() string + func (t *TestSuite) Delete(path string) + func (t *TestSuite) DeleteCustom(uri string) *TestRequest + func (t *TestSuite) Get(path string) + func (t *TestSuite) GetCustom(uri string) *TestRequest + func (t *TestSuite) Host() string + func (t *TestSuite) NewTestRequest(req *http.Request) *TestRequest + func (t *TestSuite) Patch(path string, contentType string, reader io.Reader) + func (t *TestSuite) PatchCustom(uri string, contentType string, reader io.Reader) *TestRequest + func (t *TestSuite) Post(path string, contentType string, reader io.Reader) + func (t *TestSuite) PostCustom(uri string, contentType string, reader io.Reader) *TestRequest + func (t *TestSuite) PostFile(path string, params url.Values, filePaths url.Values) + func (t *TestSuite) PostFileCustom(uri string, params url.Values, filePaths url.Values) *TestRequest + func (t *TestSuite) PostForm(path string, data url.Values) + func (t *TestSuite) PostFormCustom(uri string, data url.Values) *TestRequest + func (t *TestSuite) Put(path string, contentType string, reader io.Reader) + func (t *TestSuite) PutCustom(uri string, contentType string, reader io.Reader) *TestRequest + func (t *TestSuite) WebSocket(path string) *websocket.Conn + func (t *TestSuite) WebSocketUrl() string