summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_continuation.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/ruby/test_continuation.rb b/test/ruby/test_continuation.rb
index 2725996504..09787c1589 100644
--- a/test/ruby/test_continuation.rb
+++ b/test/ruby/test_continuation.rb
@@ -51,19 +51,5 @@ class TestContinuation < Test::Unit::TestCase
c.call
}
end
-
- def test_sort
- assert_normal_exit(<<-'End')
- require 'continuation'
- n = 1000
- ary = (1..100).to_a
- ary.sort! {|a,b|
- callcc {|k| $k = k } if !defined? $k
- a <=> b
- }
- n -= 1
- $k.call if 0 < n
- End
- end
end