aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2015-07-28 12:22:37 +0200
committerRobin Dupret <robin.dupret@gmail.com>2015-07-28 12:22:37 +0200
commita74fbb2972bb161c553d7a5bd3a13299de6c7927 (patch)
treef60f86fcb211460acf3204ab02de41f8aaa3570b /activerecord
parent32b0db266ced3f370d4e989c93a074002153a1c1 (diff)
downloadrails-a74fbb2972bb161c553d7a5bd3a13299de6c7927.tar.gz
rails-a74fbb2972bb161c553d7a5bd3a13299de6c7927.tar.bz2
rails-a74fbb2972bb161c553d7a5bd3a13299de6c7927.zip
Add `:nodoc:` for internal testing methods [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/fixtures.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb
index d062dd9e34..f1dc56df63 100644
--- a/activerecord/lib/active_record/fixtures.rb
+++ b/activerecord/lib/active_record/fixtures.rb
@@ -827,12 +827,12 @@ module ActiveRecord
module TestFixtures
extend ActiveSupport::Concern
- def before_setup
+ def before_setup # :nodoc:
setup_fixtures
super
end
- def after_teardown
+ def after_teardown # :nodoc:
super
teardown_fixtures
end