Sha256: aff44d4518a69b5357a24115b81af920f7bb5f9e9219cfb0718b64a60617bf3c
Contents?: true
Size: 966 Bytes
Versions: 60
Compression:
Stored size: 966 Bytes
Contents
require 'em_test_helper' if EM.kqueue? class TestProcessWatch < Test::Unit::TestCase module ParentProcessWatcher def process_forked $forked = true end end module ChildProcessWatcher def process_exited $exited = true end def unbind $unbind = true EM.stop end end def setup EM.kqueue = true end def teardown EM.kqueue = false end def test_events omit_if(rbx?) omit_if(jruby?) EM.run{ # watch ourselves for a fork notification EM.watch_process(Process.pid, ParentProcessWatcher) $fork_pid = fork{ sleep } child = EM.watch_process($fork_pid, ChildProcessWatcher) $pid = child.pid EM.add_timer(0.2){ Process.kill('TERM', $fork_pid) } } assert_equal($pid, $fork_pid) assert($forked) assert($exited) assert($unbind) end end end
Version data entries
60 entries across 57 versions & 5 rubygems