require File.expand_path('../../../../spec_helper', __FILE__) describe "Process::Status#pid" do before :each do @pid = ruby_exe("print $$").to_i end it "returns the pid of the process" do $?.pid.should == @pid end end