Sha256: c36f6299d20835644babfa088ea9f019d141d62c50c3e0a7ee7c0e47b4447f9f

Contents?: true

Size: 813 Bytes

Versions: 49

Compression:

Stored size: 813 Bytes

Contents

module ActionDispatch
  # Integration test methods such as ActionDispatch::Integration::Session#get
  # and ActionDispatch::Integration::Session#post return objects of class
  # TestResponse, which represent the HTTP response results of the requested
  # controller actions.
  #
  # See Response for more information on controller response objects.
  class TestResponse < Response
    def self.from_response(response)
      new response.status, response.headers, response.body, default_headers: nil
    end

    # Was the response successful?
    alias_method :success?, :successful?

    # Was the URL not found?
    alias_method :missing?, :not_found?

    # Were we redirected?
    alias_method :redirect?, :redirection?

    # Was there a server-side error?
    alias_method :error?, :server_error?
  end
end

Version data entries

49 entries across 46 versions & 6 rubygems

Version Path
actionpack-4.2.11.3 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.11.2 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.11.1 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.11 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.10 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.10.rc1 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.9 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.9.rc2 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.9.rc1 lib/action_dispatch/testing/test_response.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/actionpack-4.2.8/lib/action_dispatch/testing/test_response.rb
actionpack-4.2.8 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.8.rc1 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.7.1 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.7 lib/action_dispatch/testing/test_response.rb
actionpack-4.1.16 lib/action_dispatch/testing/test_response.rb
actionpack-4.1.16.rc1 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.7.rc1 lib/action_dispatch/testing/test_response.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/testing/test_response.rb
actionpack-4.1.15 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.6 lib/action_dispatch/testing/test_response.rb