diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2015-07-28 12:22:37 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2015-07-28 12:22:37 +0200 |
commit | a74fbb2972bb161c553d7a5bd3a13299de6c7927 (patch) | |
tree | f60f86fcb211460acf3204ab02de41f8aaa3570b /railties/lib | |
parent | 32b0db266ced3f370d4e989c93a074002153a1c1 (diff) | |
download | rails-a74fbb2972bb161c553d7a5bd3a13299de6c7927.tar.gz rails-a74fbb2972bb161c553d7a5bd3a13299de6c7927.tar.bz2 rails-a74fbb2972bb161c553d7a5bd3a13299de6c7927.zip |
Add `:nodoc:` for internal testing methods [ci skip]
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/test_help.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/test_help.rb b/railties/lib/rails/test_help.rb index 828039dc43..5cc1b5b219 100644 --- a/railties/lib/rails/test_help.rb +++ b/railties/lib/rails/test_help.rb @@ -28,14 +28,14 @@ if defined?(ActiveRecord::Base) end class ActionController::TestCase - def before_setup + def before_setup # :nodoc: @routes = Rails.application.routes super end end class ActionDispatch::IntegrationTest - def before_setup + def before_setup # :nodoc: @routes = Rails.application.routes super end |