summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi/kernel_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/optional/capi/kernel_spec.rb')
-rw-r--r--spec/ruby/optional/capi/kernel_spec.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/ruby/optional/capi/kernel_spec.rb b/spec/ruby/optional/capi/kernel_spec.rb
index ab66f7fa9e..758d944da9 100644
--- a/spec/ruby/optional/capi/kernel_spec.rb
+++ b/spec/ruby/optional/capi/kernel_spec.rb
@@ -312,6 +312,14 @@ describe "C-API Kernel function" do
@s.rb_protect_null_status(42) { |x| x + 1 }.should == 43
@s.rb_protect_null_status(42) { |x| raise }.should == nil
end
+
+ it "populates errinfo with the captured exception" do
+ proof = []
+ @s.rb_protect_errinfo(77, proof) { |x| raise NameError }.class.should == NameError
+ proof[0].should == 23
+ proof[1].should == nil
+ end
+
end
describe "rb_eval_string_protect" do