aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/exception/system_exit_spec.rb
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2020-11-13 13:17:24 +0100
committerBenoit Daloze <eregontp@gmail.com>2020-11-13 13:17:24 +0100
commit6d05967468ea58ba481259718f07b3cb5a386945 (patch)
treee21976cdae28f91bcac002dc463a099ca64d111d /spec/ruby/core/exception/system_exit_spec.rb
parentacbe7aa19705905e7ad1952395e98e8bfe583a97 (diff)
downloadruby-6d05967468ea58ba481259718f07b3cb5a386945.tar.gz
Update to ruby/spec@b0b7f53
Diffstat (limited to 'spec/ruby/core/exception/system_exit_spec.rb')
-rw-r--r--spec/ruby/core/exception/system_exit_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/ruby/core/exception/system_exit_spec.rb b/spec/ruby/core/exception/system_exit_spec.rb
new file mode 100644
index 0000000000..5c6116576b
--- /dev/null
+++ b/spec/ruby/core/exception/system_exit_spec.rb
@@ -0,0 +1,17 @@
+require_relative '../../spec_helper'
+
+describe "SystemExit" do
+ it "sets the exit status and exits silently when raised" do
+ code = 'raise SystemExit.new(7)'
+ result = ruby_exe(code, args: "2>&1")
+ result.should == ""
+ $?.exitstatus.should == 7
+ end
+
+ it "sets the exit status and exits silently when raised when subclassed" do
+ code = 'class CustomExit < SystemExit; end; raise CustomExit.new(8)'
+ result = ruby_exe(code, args: "2>&1")
+ result.should == ""
+ $?.exitstatus.should == 8
+ end
+end