summaryrefslogtreecommitdiff
path: root/test/ruby/test_object.rb
diff options
context:
space:
mode:
-rw-r--r--test/ruby/test_object.rb9
1 files changed, 0 insertions, 9 deletions
@@ -993,13 +993,4 @@ class TestObject < Test::Unit::TestCase
end
EOS
end
-
- def test_frozen_inspect
- obj = Object.new
- obj.instance_variable_set(:@a, "a")
- ins = obj.inspect
- obj.freeze
-
- assert_equal(ins, obj.inspect)
- end
end