From 1d4e7d923266090844ef1bc1afc8704b75b7d057 Mon Sep 17 00:00:00 2001 From: drbrain Date: Tue, 22 May 2012 20:15:28 +0000 Subject: * class.c (rb_mod_init_copy): Clear the cached inspect string of a dup'd anonymous module or class. [ruby-trunk - Bug #6454] * test/ruby/test_module.rb (class TestModule): ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 88b7dd1572..66cc0073f7 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -259,6 +259,31 @@ class TestModule < Test::Unit::TestCase assert_equal([:MIXIN, :USER], User.constants.sort) end + def test_dup + bug6454 = '[ruby-core:45132]' + + a = Module.new + Other.const_set :BUG6454, a + + original = Other::BUG6454.inspect + + b = a.dup + Other.const_set :BUG6454_dup, b + + assert_equal "TestModule::Other::BUG6454_dup", b.inspect, bug6454 + end + + def test_dup_anonymous + bug6454 = '[ruby-core:45132]' + + a = Module.new + original = a.inspect + + b = a.dup + + refute_equal original, b.inspect, bug6454 + end + def test_included_modules assert_equal([], Mixin.included_modules) assert_equal([Mixin], User.included_modules) -- cgit v1.2.3