aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/process/waitpid_spec.rb
blob: c95e8d59dd371e5cfe2541251fda4ea7619a4418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require File.expand_path('../../../spec_helper', __FILE__)

describe "Process.waitpid" do
  it "needs to be reviewed for spec completeness"

  it "returns nil when the process has not yet completed and WNOHANG is specified" do
    pid = spawn("sleep 5")
    begin
      Process.waitpid(pid, Process::WNOHANG).should == nil
      Process.kill("KILL", pid)
    ensure
      Process.wait(pid)
    end
  end
end