Rack::MockResponse provides useful helpers for testing your apps. Usually, you don't create the MockResponse on your own, but use MockRequest.
Errors
Headers
# File lib/rack/mock.rb, line 155 def initialize(status, headers, body, errors=StringIO.new("")) @original_headers = headers @errors = errors.string if errors.respond_to?(:string) @body_string = nil super(body, status, headers) end
# File lib/rack/mock.rb, line 163 def =~(other) body =~ other end
# File lib/rack/mock.rb, line 171 def body # FIXME: apparently users of MockResponse expect the return value of # MockResponse#body to be a string. However, the real response object # returns the body as a list. # # See spec_showstatus.rb: # # should "not replace existing messages" do # ... # res.body.should == "foo!" # end super.join end
# File lib/rack/mock.rb, line 185 def empty? [201, 204, 205, 304].include? status end
# File lib/rack/mock.rb, line 167 def match(other) body.match other end