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 /activejob/lib/active_job | |
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 'activejob/lib/active_job')
-rw-r--r-- | activejob/lib/active_job/test_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activejob/lib/active_job/test_helper.rb b/activejob/lib/active_job/test_helper.rb index 9b307e8dc8..e71a3b4f85 100644 --- a/activejob/lib/active_job/test_helper.rb +++ b/activejob/lib/active_job/test_helper.rb @@ -7,7 +7,7 @@ module ActiveJob extend ActiveSupport::Concern included do - def before_setup + def before_setup # :nodoc: test_adapter = ActiveJob::QueueAdapters::TestAdapter.new @old_queue_adapters = (ActiveJob::Base.subclasses << ActiveJob::Base).select do |klass| @@ -24,7 +24,7 @@ module ActiveJob super end - def after_teardown + def after_teardown # :nodoc: super @old_queue_adapters.each do |(klass, adapter)| klass.queue_adapter = adapter |