aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-08 13:47:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-08 13:47:11 +0000
commit3fd0000c0cf8fedad3b8130b11c2f93a6426d6b0 (patch)
tree81b3b1948e3cc2d48b677f987c855a205613ca75 /test
parent6359460610c0a43d515f3da71b4e8901759d855f (diff)
downloadruby-3fd0000c0cf8fedad3b8130b11c2f93a6426d6b0.tar.gz
class.c: exclude original module
* class.c (rb_mod_included_modules): should not include the original module itself. [ruby-core:53158] [Bug #8025] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_module.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index f27c11072a..45b5056927 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -1548,6 +1548,13 @@ class TestModule < Test::Unit::TestCase
assert_nothing_raised(NoMethodError, bug8005) {a.send :foo}
end
+ def test_prepend_included_modules
+ bug8025 = '[ruby-core:53158] [Bug #8025]'
+ mixin = labeled_module("mixin")
+ c = labeled_module("c") {prepend mixin}
+ assert_not_include(c.included_modules, c, bug8025)
+ end
+
def test_class_variables
m = Module.new
m.class_variable_set(:@@foo, 1)