aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorArthur Nogueira Neves <github@arthurnn.com>2016-03-12 19:16:39 -0500
committerArthur Nogueira Neves <github@arthurnn.com>2016-03-12 19:16:39 -0500
commitdde830faf5ee9930321a9c0a9b78a8a1e514fb5f (patch)
tree1db632628e825a2d152286ad656b1d8ddeb264dc /actionview
parent4928c5c719c26e5400e686623a8f748ec7445540 (diff)
parente58a2b008a46f07d98e247948b05d8562428420a (diff)
downloadrails-dde830faf5ee9930321a9c0a9b78a8a1e514fb5f.tar.gz
rails-dde830faf5ee9930321a9c0a9b78a8a1e514fb5f.tar.bz2
rails-dde830faf5ee9930321a9c0a9b78a8a1e514fb5f.zip
Merge pull request #24174 from y-yagi/silence_deprecation_message
silence deprecation message for dynamic controller and actions on Action View test
Diffstat (limited to 'actionview')
-rw-r--r--actionview/test/template/url_helper_test.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionview/test/template/url_helper_test.rb b/actionview/test/template/url_helper_test.rb
index d6a19a829f..ab56d80de3 100644
--- a/actionview/test/template/url_helper_test.rb
+++ b/actionview/test/template/url_helper_test.rb
@@ -655,7 +655,9 @@ class UrlHelperControllerTest < ActionController::TestCase
to: 'url_helper_controller_test/url_helper#show_named_route',
as: :show_named_route
- get "/:controller(/:action(/:id))"
+ ActiveSupport::Deprecation.silence do
+ get "/:controller(/:action(/:id))"
+ end
get 'url_helper_controller_test/url_helper/normalize_recall_params',
to: UrlHelperController.action(:normalize_recall),