aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_eval.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_eval.rb')
-rw-r--r--test/ruby/test_eval.rb13
1 files changed, 10 insertions, 3 deletions
diff --git a/test/ruby/test_eval.rb b/test/ruby/test_eval.rb
index c73dfde9a7..9f25b771bf 100644
--- a/test/ruby/test_eval.rb
+++ b/test/ruby/test_eval.rb
@@ -526,14 +526,21 @@ class TestEval < Test::Unit::TestCase
}, '[Bug #10368]'
end
+ def orphan_proc
+ proc {eval("return :ng")}
+ end
+
+ def orphan_lambda
+ lambda {eval("return :ok")}
+ end
+
def test_return_in_eval_proc
- skip
- x = proc {eval("return :ng")}
+ x = orphan_proc
assert_raise(LocalJumpError) {x.call}
end
def test_return_in_eval_lambda
- x = lambda {eval("return :ok")}
+ x = orphan_lambda
assert_equal(:ok, x.call)
end
end