* eval.c (Init_eval): main.include should be private.

[ruby-core:51293] [Bug #7670]

* test/ruby/test_module.rb (test_top_include_is_private): a new test
  for the above change.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2013-01-07 11:55:17 +00:00
parent 04fd9aceab
commit 4722c20661
3 changed files with 29 additions and 1 deletions

View file

@ -1596,4 +1596,23 @@ class TestModule < Test::Unit::TestCase
m = Module.new
assert_raise(NameError){ m.instance_eval { remove_const(:__FOO__) } }
end
def test_top_include_is_private
main = eval("self", TOPLEVEL_BINDING)
methods = main.singleton_class.private_instance_methods(false)
assert(methods.include?(:include))
assert_in_out_err([], <<-INPUT, ["true"], [])
module M
end
include M
p singleton_class < M
INPUT
assert_in_out_err([], <<-INPUT, [], /private method `include' called for main:Object \(NoMethodError\)/)
module M
end
self.include M
INPUT
end
end