aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/object_and_class_ext_test.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/activesupport/test/core_ext/object_and_class_ext_test.rb b/activesupport/test/core_ext/object_and_class_ext_test.rb
index 00c59d84b8..437bb78a4e 100644
--- a/activesupport/test/core_ext/object_and_class_ext_test.rb
+++ b/activesupport/test/core_ext/object_and_class_ext_test.rb
@@ -123,13 +123,6 @@ class ObjectTests < ActiveSupport::TestCase
o = Object.new
assert_equal class << o; self end, o.singleton_class
end
-
- def test_metaclass_deprecated
- o = Object.new
- assert_deprecated /use singleton_class instead/ do
- assert_equal o.singleton_class, o.metaclass
- end
- end
end
class ObjectInstanceVariableTest < Test::Unit::TestCase