From c7d6c0d084bbb40d43d7bf7e0e4812c09d1a1a90 Mon Sep 17 00:00:00 2001 From: hsbt Date: Fri, 2 Jan 2015 07:21:36 +0000 Subject: * test/ruby/test_module.rb: Refactor invalid testcase. [fix GH-472][ruby-core:59035][Bug #9240] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'test/ruby/test_module.rb') diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 6d08bf6c00..8084fdab45 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -1926,8 +1926,8 @@ class TestModule < Test::Unit::TestCase assert_raise(NoMethodError, bug8284) {Object.define_method} end - def test_include_module_with_constants_invalidates_method_cache - assert_in_out_err([], <<-RUBY, %w(123 456), []) + def test_include_module_with_constants_does_not_invalidate_method_cache + assert_in_out_err([], <<-RUBY, %w(123 456 true), []) A = 123 class Foo @@ -1941,8 +1941,13 @@ class TestModule < Test::Unit::TestCase end puts Foo.a + starting = RubyVM.stat[:global_method_state] + Foo.send(:include, M) + + ending = RubyVM.stat[:global_method_state] puts Foo.a + puts starting == ending RUBY end -- cgit v1.2.3