summaryrefslogtreecommitdiff
path: root/test/ruby/test_comparable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_comparable.rb')
-rw-r--r--test/ruby/test_comparable.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/ruby/test_comparable.rb b/test/ruby/test_comparable.rb
index 747f1e29a7..6c58e5d365 100644
--- a/test/ruby/test_comparable.rb
+++ b/test/ruby/test_comparable.rb
@@ -17,8 +17,9 @@ class TestComparable < Test::Unit::TestCase
assert_equal(true, @o == nil)
cmp->(x) do 1; end
assert_equal(false, @o == nil)
- cmp->(x) do raise; end
- assert_equal(false, @o == nil)
+ bug7688 = '[ruby-core:51389] [Bug #7688]'
+ cmp->(x) do raise NotImplementedError; end
+ assert_raise(NotImplementedError, bug7688) { @o == nil }
end
def test_gt