aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-03-13 08:59:31 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-03-13 08:59:31 +0900
commite58a2b008a46f07d98e247948b05d8562428420a (patch)
tree48a3fc8e31e0265f2ef0f0c6d2252a7a4fc7f209 /actionview
parent9201030320d09bb2ec76a7cc59aa58f77f984995 (diff)
downloadrails-e58a2b008a46f07d98e247948b05d8562428420a.tar.gz
rails-e58a2b008a46f07d98e247948b05d8562428420a.tar.bz2
rails-e58a2b008a46f07d98e247948b05d8562428420a.zip
silence deprecation message for dynamic controller and actions on Action View test
Follow up to #23980.
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),