From af3500b18817a48d7ec83812a0d4869f3fe33b2f Mon Sep 17 00:00:00 2001 From: Trevor Wistaff Date: Mon, 7 Aug 2017 13:35:11 +1000 Subject: Deprecate ActionDispatch::TestResponse response aliases https://github.com/rails/rails/issues/30072 --- actionpack/test/dispatch/test_response_test.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'actionpack/test/dispatch') diff --git a/actionpack/test/dispatch/test_response_test.rb b/actionpack/test/dispatch/test_response_test.rb index 2629a61057..f0b8f7785d 100644 --- a/actionpack/test/dispatch/test_response_test.rb +++ b/actionpack/test/dispatch/test_response_test.rb @@ -27,4 +27,11 @@ class TestResponseTest < ActiveSupport::TestCase response = ActionDispatch::TestResponse.create(200, { "Content-Type" => "application/json" }, '{ "foo": "fighters" }') assert_equal({ "foo" => "fighters" }, response.parsed_body) end + + test "response status aliases deprecated" do + response = ActionDispatch::TestResponse.create + assert_deprecated { response.success? } + assert_deprecated { response.missing? } + assert_deprecated { response.error? } + end end -- cgit v1.2.3