Report abuse


			
euler:rubinius brian$ bin/mspec -Z -fs -g fails spec/ruby/1.8/core/process/

Process#detach
- reaps the child process's status automatically

Process.groups
- gets an Array of the gids of groups in the supplemental group access list

Process.kill
- requires at least two arguments
- raises an ArgumentError for unknown signals
- doesn't accept lowercase signal names
- doesn't tolerate leading or trailing spaces in signal names
- tests for the existence of a process without sending a signal
- raises an EPERM if permission is denied

Process.kill
- sends the given signal to the current process if pid is zero
- accepts integer signal numbers
- accepts POSIX signal names without 'SIG' prefix
- accepts POSIX signal names with 'SIG' prefix

Process.kill
- sends the given signal to the specified process
- kills process groups if signal is negative
- kills process groups if signal starts with a minus sign
- kills process groups if signal starts with a minus sign and 'SIG'

Process.waitall
- returns an empty array when there are no children
- takes no arguments
- waits for all children
- returns an array of pid/status pairs


Finished in 0.137956 seconds

30 files, 20 examples, 0 expectations, 0 failures, 0 errors