diff options
author | Benoit Daloze <[email protected]> | 2021-03-27 13:02:41 +0100 |
---|---|---|
committer | Benoit Daloze <[email protected]> | 2021-03-27 13:02:41 +0100 |
commit | 95d9fe9538441eb57ee6752aa1c5088fc6608e34 (patch) | |
tree | 9a0bb070fd8042b83470f7a0bf9cd462c919c7c0 /spec/ruby/optional/capi/kernel_spec.rb | |
parent | 44736a6b7a2b3475db2d05187f33e3c1a7b4b4e5 (diff) |
Update to ruby/spec@fd6eddd
Diffstat (limited to 'spec/ruby/optional/capi/kernel_spec.rb')
-rw-r--r-- | spec/ruby/optional/capi/kernel_spec.rb | 8 |
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 |