mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
44785befea
array as argument. * test/ruby/test_*.rb: moved invariants to left side in assert_equal, and use assert_nil, assert_raises and so on. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
24 lines
479 B
Ruby
24 lines
479 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(2, $x)
|
|
|
|
trap "SIGINT", proc{raise "Interrupt"}
|
|
|
|
x = assert_raises(RuntimeError) do
|
|
Process.kill "SIGINT", $$
|
|
sleep 0.1
|
|
end
|
|
assert(x)
|
|
assert_match(/Interrupt/, x.message)
|
|
end
|
|
end
|
|
end
|