aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRajarshi Das <rajarshid@cybage.com>2014-04-04 20:16:26 +0530
committerRajarshi Das <rajarshid@cybage.com>2014-04-04 20:17:02 +0530
commit996658e65551f575571a98f8b6a10bd2da07a90f (patch)
tree2d09c562723effa520a67678fe91bd0528b2ed53
parentdef60710ad74132a322fe8a08b0a6f0bbd3a3eed (diff)
downloadrails-996658e65551f575571a98f8b6a10bd2da07a90f.tar.gz
rails-996658e65551f575571a98f8b6a10bd2da07a90f.tar.bz2
rails-996658e65551f575571a98f8b6a10bd2da07a90f.zip
Active support instead of ActiveSupport::Deprecation.silence we can use assert_deprecated
-rw-r--r--activesupport/test/core_ext/class/delegating_attributes_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/test/core_ext/class/delegating_attributes_test.rb b/activesupport/test/core_ext/class/delegating_attributes_test.rb
index 86193c2b07..447b1d10ad 100644
--- a/activesupport/test/core_ext/class/delegating_attributes_test.rb
+++ b/activesupport/test/core_ext/class/delegating_attributes_test.rb
@@ -33,7 +33,7 @@ class DelegatingAttributesTest < ActiveSupport::TestCase
end
def test_simple_accessor_declaration
- ActiveSupport::Deprecation.silence do
+ assert_deprecated do
single_class.superclass_delegating_accessor :both
end
@@ -48,7 +48,7 @@ class DelegatingAttributesTest < ActiveSupport::TestCase
def test_simple_accessor_declaration_with_instance_reader_false
_instance_methods = single_class.public_instance_methods
- ActiveSupport::Deprecation.silence do
+ assert_deprecated do
single_class.superclass_delegating_accessor :no_instance_reader, :instance_reader => false
end
@@ -60,7 +60,7 @@ class DelegatingAttributesTest < ActiveSupport::TestCase
end
def test_working_with_simple_attributes
- ActiveSupport::Deprecation.silence do
+ assert_deprecated do
single_class.superclass_delegating_accessor :both
end
@@ -79,7 +79,7 @@ class DelegatingAttributesTest < ActiveSupport::TestCase
def test_child_class_delegates_to_parent_but_can_be_overridden
parent = Class.new
- ActiveSupport::Deprecation.silence do
+ assert_deprecated do
parent.superclass_delegating_accessor :both
end