diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-03-13 08:59:31 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-03-13 08:59:31 +0900 |
commit | e58a2b008a46f07d98e247948b05d8562428420a (patch) | |
tree | 48a3fc8e31e0265f2ef0f0c6d2252a7a4fc7f209 /actionview/test/template | |
parent | 9201030320d09bb2ec76a7cc59aa58f77f984995 (diff) | |
download | rails-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/test/template')
-rw-r--r-- | actionview/test/template/url_helper_test.rb | 4 |
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), |