// 1. we should have OK because our request was valid
suite.Equal(http.StatusOK,recorder.Code)
// 2. we should have no error message in the result body
result:=recorder.Result()
deferresult.Body.Close()
// check the response
b,err:=ioutil.ReadAll(result.Body)
assert.NoError(suite.T(),err)
suite.Equal(`[{"id":"01FHMQX3GAABWSM0S2VZEC2SWC","username":"some_user","acct":"some_user@example.org","display_name":"some user","locked":true,"bot":false,"created_at":"2020-08-10T12:13:28Z","note":"i'm a real son of a gun","url":"http://example.org/@some_user","avatar":"","avatar_static":"","header":"","header_static":"","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"","emojis":[],"fields":[]}]`,string(b))