summaryrefslogtreecommitdiff
path: root/spec/ruby/core/process/status/to_i_spec.rb
blob: 39f8e2d84c0c005cdb7e5ac7f2737b039a9ff18a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative '../../../spec_helper'

describe "Process::Status#to_i" do
  it "returns an integer when the child exits" do
    ruby_exe('exit 48', exit_status: 48)
    $?.to_i.should be_an_instance_of(Integer)
  end

  it "returns an integer when the child is signaled" do
    ruby_exe('raise SignalException, "TERM"', exit_status: platform_is(:windows) ? 3 : :SIGTERM)
    $?.to_i.should be_an_instance_of(Integer)
  end
end