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.



156
157
158
# File 'lib/active_resource/http_mock.rb', line 156

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.



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

def body
  @body
end

#headersObject

Returns the value of attribute headers.



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

def headers
  @headers
end

#methodObject

Returns the value of attribute method.



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

def method
  @method
end

#pathObject

Returns the value of attribute path.



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

def path
  @path
end

Instance Method Details

#==(other_request) ⇒ Object



160
161
162
# File 'lib/active_resource/http_mock.rb', line 160

def ==(other_request)
  other_request.hash == hash
end

#eql?(other_request) ⇒ Boolean

Returns:

  • (Boolean)


164
165
166
# File 'lib/active_resource/http_mock.rb', line 164

def eql?(other_request)
  self == other_request
end

#hashObject



172
173
174
# File 'lib/active_resource/http_mock.rb', line 172

def hash
  "#{path}#{method}#{headers}".hash
end

#to_sObject



168
169
170
# File 'lib/active_resource/http_mock.rb', line 168

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