summaryrefslogtreecommitdiff
path: root/spec/ruby/core/process/status/to_i_spec.rb
blob: a284f64f862aabf82c761ad5011821990bd18013 (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')
    $?.to_i.should be_an_instance_of(Integer)
  end

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