Class: ActiveResource::Request

Inherits:
Object
  • Object
show all
Defined in:
lib/active_resource/http_mock.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(method, path, body = nil, headers = {}) ⇒ Request

Returns a new instance of Request.



146
147
148
# File 'lib/active_resource/http_mock.rb', line 146

def initialize(method, path, body = nil, headers = {})
  @method, @path, @body, @headers = method, path, body, headers.merge(ActiveResource::Connection::HTTP_FORMAT_HEADER_NAMES[method] => 'application/xml')
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



144
145
146
# File 'lib/active_resource/http_mock.rb', line 144

def body
  @body
end

#headersObject

Returns the value of attribute headers.



144
145
146
# File 'lib/active_resource/http_mock.rb', line 144

def headers
  @headers
end

#methodObject

Returns the value of attribute method.



144
145
146
# File 'lib/active_resource/http_mock.rb', line 144

def method
  @method
end

#pathObject

Returns the value of attribute path.



144
145
146
# File 'lib/active_resource/http_mock.rb', line 144

def path
  @path
end

Instance Method Details

#==(req) ⇒ Object



150
151
152
# File 'lib/active_resource/http_mock.rb', line 150

def ==(req)
  path == req.path && method == req.method && headers == req.headers
end

#to_sObject



154
155
156
# File 'lib/active_resource/http_mock.rb', line 154

def to_s
  "<#{method.to_s.upcase}: #{path} [#{headers}] (#{body})>"
end