method
==
==(other)
public
Hide source
# File activeresource/lib/active_resource/http_mock.rb, line 284 def ==(other) if (other.is_a?(Response)) other.body == body && other.message == message && other.headers == headers else false end end


