diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2017-08-08 18:27:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-08 18:27:05 -0400 |
commit | d5d5f42888e8d6466f740821de288e0892d38ccd (patch) | |
tree | e00f4a43e56eee5bd73d6cf8832f0417e87d46f7 /actionpack/lib | |
parent | 7960ae27c8eb147e1c183a97d3b87492f897cdd7 (diff) | |
parent | af3500b18817a48d7ec83812a0d4869f3fe33b2f (diff) | |
download | rails-d5d5f42888e8d6466f740821de288e0892d38ccd.tar.gz rails-d5d5f42888e8d6466f740821de288e0892d38ccd.tar.bz2 rails-d5d5f42888e8d6466f740821de288e0892d38ccd.zip |
Merge pull request #30104 from trev/deprecate-actiondispatch-testresponse-alias
Deprecate ActionDispatch::TestResponse response aliases
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/test_response.rb | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/testing/test_response.rb b/actionpack/lib/action_dispatch/testing/test_response.rb index 0b7e9ca945..b23ea7479c 100644 --- a/actionpack/lib/action_dispatch/testing/test_response.rb +++ b/actionpack/lib/action_dispatch/testing/test_response.rb @@ -20,13 +20,31 @@ module ActionDispatch end # Was the response successful? - alias_method :success?, :successful? + def success? + ActiveSupport::Deprecation.warn(<<-MSG.squish) + The success? predicate is deprecated and will be removed in Rails 6.0. + Please use successful? as provided by Rack::Response::Helpers. + MSG + successful? + end # Was the URL not found? - alias_method :missing?, :not_found? + def missing? + ActiveSupport::Deprecation.warn(<<-MSG.squish) + The missing? predicate is deprecated and will be removed in Rails 6.0. + Please use not_found? as provided by Rack::Response::Helpers. + MSG + not_found? + end # Was there a server-side error? - alias_method :error?, :server_error? + def error? + ActiveSupport::Deprecation.warn(<<-MSG.squish) + The error? predicate is deprecated and will be removed in Rails 6.0. + Please use server_error? as provided by Rack::Response::Helpers. + MSG + server_error? + end def parsed_body @parsed_body ||= @response_parser.call(body) |