summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_module.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index 55678e42a8..6b7c0da4a2 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -1566,6 +1566,12 @@ class TestModule < Test::Unit::TestCase
end
end
+ def test_prepend_CMP
+ bug11878 = '[ruby-core:72493] [Bug #11878]'
+ assert_equal(-1, C1 <=> M2)
+ assert_equal(+1, M2 <=> C1, bug11878)
+ end
+
def test_prepend_inheritance
bug6654 = '[ruby-core:45914]'
a = labeled_module("a")