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 /activerecord/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 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/fixtures.rb | 4 |
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 |