ruby/test/ruby/test_signal.rb
nahi 65264eadbd * test/ruby/test_*.rb: replace 'assert(a == b)' with assert_equal(a, b)'
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-09-05 11:28:27 +00:00

26 lines
487 B
Ruby

require 'test/unit'
$KCODE = 'none'
class TestSignal < Test::Unit::TestCase
def test_signal
if defined? Process.kill
$x = 0
trap "SIGINT", proc{|sig| $x = 2}
Process.kill "SIGINT", $$
sleep 0.1
assert_equal($x, 2)
trap "SIGINT", proc{raise "Interrupt"}
x = false
begin
Process.kill "SIGINT", $$
sleep 0.1
rescue
x = $!
end
assert(x && /Interrupt/ =~ x.message)
end
end
end