summaryrefslogtreecommitdiff
path: root/spec/ruby/core/exception/signo_spec.rb
blob: 62fc321516c6c54f585c9ab0d4845b48798042c1 (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'

describe "SignalException#signo" do
  it "returns the signal number" do
    -> { Process.kill(:TERM, Process.pid) }.should raise_error(SignalException) { |e|
      e.signo.should == Signal.list['TERM']
    }
  end
end