diff options
Diffstat (limited to 'actionpack/lib/action_dispatch/testing/integration.rb')
| -rw-r--r-- | actionpack/lib/action_dispatch/testing/integration.rb | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/actionpack/lib/action_dispatch/testing/integration.rb b/actionpack/lib/action_dispatch/testing/integration.rb index 7e59bb68cf..711ca10419 100644 --- a/actionpack/lib/action_dispatch/testing/integration.rb +++ b/actionpack/lib/action_dispatch/testing/integration.rb @@ -131,35 +131,35 @@ module ActionDispatch        # Performs a GET request, following any subsequent redirect.        # See +request_via_redirect+ for more information.        def get_via_redirect(path, *args) -        ActiveSupport::Deprecation.warn('`get_via_redirect` is deprecated and will be removed in the next version of Rails. Please use follow_redirect! manually after the request call for the same behavior.') +        ActiveSupport::Deprecation.warn('`get_via_redirect` is deprecated and will be removed in Rails 5.1. Please use follow_redirect! manually after the request call for the same behavior.')          request_via_redirect(:get, path, *args)        end        # Performs a POST request, following any subsequent redirect.        # See +request_via_redirect+ for more information.        def post_via_redirect(path, *args) -        ActiveSupport::Deprecation.warn('`post_via_redirect` is deprecated and will be removed in the next version of Rails. Please use follow_redirect! manually after the request call for the same behavior.') +        ActiveSupport::Deprecation.warn('`post_via_redirect` is deprecated and will be removed in Rails 5.1. Please use follow_redirect! manually after the request call for the same behavior.')          request_via_redirect(:post, path, *args)        end        # Performs a PATCH request, following any subsequent redirect.        # See +request_via_redirect+ for more information.        def patch_via_redirect(path, *args) -        ActiveSupport::Deprecation.warn('`patch_via_redirect` is deprecated and will be removed in the next version of Rails. Please use follow_redirect! manually after the request call for the same behavior.') +        ActiveSupport::Deprecation.warn('`patch_via_redirect` is deprecated and will be removed in Rails 5.1. Please use follow_redirect! manually after the request call for the same behavior.')          request_via_redirect(:patch, path, *args)        end        # Performs a PUT request, following any subsequent redirect.        # See +request_via_redirect+ for more information.        def put_via_redirect(path, *args) -        ActiveSupport::Deprecation.warn('`put_via_redirect` is deprecated and will be removed in the next version of Rails. Please use follow_redirect! manually after the request call for the same behavior.') +        ActiveSupport::Deprecation.warn('`put_via_redirect` is deprecated and will be removed in Rails 5.1. Please use follow_redirect! manually after the request call for the same behavior.')          request_via_redirect(:put, path, *args)        end        # Performs a DELETE request, following any subsequent redirect.        # See +request_via_redirect+ for more information.        def delete_via_redirect(path, *args) -        ActiveSupport::Deprecation.warn('`delete_via_redirect` is deprecated and will be removed in the next version of Rails. Please use follow_redirect! manually after the request call for the same behavior.') +        ActiveSupport::Deprecation.warn('`delete_via_redirect` is deprecated and will be removed in Rails 5.1. Please use follow_redirect! manually after the request call for the same behavior.')          request_via_redirect(:delete, path, *args)        end      end @@ -375,6 +375,7 @@ module ActionDispatch            @request  = ActionDispatch::Request.new(session.last_request.env)            response = _mock_session.last_response            @response = ActionDispatch::TestResponse.from_response(response) +          @response.request = @request            @html_document = nil            @url_options = nil  | 
