summaryrefslogtreecommitdiff
path: root/spec/ruby/core/process/ppid_spec.rb
blob: 7d22755c7732c10ed2a26d5f61c19e62689cd220 (plain)
1
2
3
4
5
6
7
require_relative '../../spec_helper'

describe "Process.ppid" do
  it "returns the process id of the parent of this process" do
    ruby_exe("puts Process.ppid").should == "#{Process.pid}\n"
  end
end