Methods
#
N
S
Attributes
[RW] body
[RW] code
[RW] headers
[RW] message
Class Public methods
new(body, message = 200, headers = {})
# File activeresource/lib/active_resource/http_mock.rb, line 286
def initialize(body, message = 200, headers = {})
  @body, @message, @headers = body, message.to_s, headers
  @code = @message[0,3].to_i

  resp_cls = Net::HTTPResponse::CODE_TO_OBJ[@code.to_s]
  if resp_cls && !resp_cls.body_permitted?
    @body = nil
  end

  if @body.nil?
    self['Content-Length'] = "0"
  else
    self['Content-Length'] = body.size.to_s
  end
end
Instance Public methods
==(other)

Returns true if the other is a Response with an equal body, equal message and equal headers. Otherwise it returns false.

# File activeresource/lib/active_resource/http_mock.rb, line 318
def ==(other)
  if (other.is_a?(Response))
    other.body == body && other.message == message && other.headers == headers
  else
    false
  end
end
[](key)
# File activeresource/lib/active_resource/http_mock.rb, line 308
def [](key)
  headers[key]
end
[]=(key, value)
# File activeresource/lib/active_resource/http_mock.rb, line 312
def []=(key, value)
  headers[key] = value
end
success?()

Returns true if code is 2xx, false otherwise.

# File activeresource/lib/active_resource/http_mock.rb, line 304
def success?
  code.in?(200..299)
end