request
An object with easily digestible values derived from the mock XHR object.
Object
This object is passed to a requestHandler and can be used to determine the response.
fixture("GET /todos/{id}", function(request, response){
request.url //-> "todos/5"
request.method //-> "get"
request.data //-> {id: "5", include: ["owner"]}
request.headers //-> {}
request.async //-> false
});
$.get("/todos/5?include[]=owner");