aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/old_base/adv_attr_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionmailer/test/old_base/adv_attr_test.rb')
-rw-r--r--actionmailer/test/old_base/adv_attr_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionmailer/test/old_base/adv_attr_test.rb b/actionmailer/test/old_base/adv_attr_test.rb
index f22d733bc5..c5a6b6d88b 100644
--- a/actionmailer/test/old_base/adv_attr_test.rb
+++ b/actionmailer/test/old_base/adv_attr_test.rb
@@ -11,9 +11,14 @@ class AdvAttrTest < ActiveSupport::TestCase
end
def setup
+ ActiveSupport::Deprecation.silenced = true
@person = Person.new
end
+ def teardown
+ ActiveSupport::Deprecation.silenced = false
+ end
+
def test_adv_attr
assert_nil @person.name
@person.name 'Bob'