From 5e9cfca2d4fe158a9e2c5fac699b9dfe014b845f Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 6 Oct 2008 03:49:17 +0000 Subject: * test/ruby/test_module.rb (TestModule#test_mod_constants): should not depend on global Module constants. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19699 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 17fbf56337..072f559c3c 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -544,10 +544,11 @@ class TestModule < Test::Unit::TestCase end def test_mod_constants - Module.const_set(:Foo, :foo) - assert_equal([:Foo], Module.constants(true)) - assert_equal([:Foo], Module.constants(false)) - Module.instance_eval { remove_const(:Foo) } + m = Module.new + m.const_set(:Foo, :foo) + assert_equal([:Foo], m.constants(true)) + assert_equal([:Foo], m.constants(false)) + m.instance_eval { remove_const(:Foo) } end def test_frozen_class -- cgit v1.2.3