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.1.15.rc1 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.6.rc1 lib/action_dispatch/testing/test_response.rb
actionpack-4.1.14.2 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.5.2 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.5.1 lib/action_dispatch/testing/test_response.rb
actionpack-4.1.14.1 lib/action_dispatch/testing/test_response.rb
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/actionpack-4.2.4/lib/action_dispatch/testing/test_response.rb
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/actionpack-4.1.13/lib/action_dispatch/testing/test_response.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/actionpack-4.1.13/lib/action_dispatch/testing/test_response.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/actionpack-4.2.4/lib/action_dispatch/testing/test_response.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/actionpack-4.2.4/lib/action_dispatch/testing/test_response.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/actionpack-4.1.13/lib/action_dispatch/testing/test_response.rb
actionpack-4.1.14 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.5 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.5.rc2 lib/action_dispatch/testing/test_response.rb
actionpack-4.1.14.rc2 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.5.rc1 lib/action_dispatch/testing/test_response.rb
actionpack-4.1.14.rc1 lib/action_dispatch/testing/test_response.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/testing/test_response.rb
actionpack-4.2.4 lib/action_dispatch/testing/test_response.rb