1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/rubygems/test_exit.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
395 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require_relative "helper"
require "rubygems"
class TestExit < Gem::TestCase
def test_exit
system(*ruby_with_rubygems_in_load_path, "-e", "raise Gem::SystemExitException.new(2)")
assert_equal 2, $?.exitstatus
end
def test_status
exc = Gem::SystemExitException.new(42)
assert_equal 42, exc.status
assert_equal 42, exc.exit_code
end
end