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.13 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.4.rc1 lib/action_dispatch/testing/test_response.rb
actionpack-4.1.13.rc1 lib/action_dispatch/testing/test_response.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/actionpack-4.2.3/lib/action_dispatch/testing/test_response.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/actionpack-4.2.3/lib/action_dispatch/testing/test_response.rb
actionpack-4.2.3 lib/action_dispatch/testing/test_response.rb
actionpack-4.1.12 lib/action_dispatch/testing/test_response.rb
actionpack-4.2.3.rc1 lib/action_dispatch/testing/test_response.rb
actionpack-4.1.12.rc1 lib/action_dispatch/testing/test_response.rb