diff options
Diffstat (limited to 'spec/ruby/core/process/ppid_spec.rb')
| -rw-r--r-- | spec/ruby/core/process/ppid_spec.rb | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/spec/ruby/core/process/ppid_spec.rb b/spec/ruby/core/process/ppid_spec.rb index e0bdfef30b..47c32a8591 100644 --- a/spec/ruby/core/process/ppid_spec.rb +++ b/spec/ruby/core/process/ppid_spec.rb @@ -1,23 +1,9 @@ require_relative '../../spec_helper' describe "Process.ppid" do - with_feature :fork do + platform_is_not :windows do it "returns the process id of the parent of this process" do - - read, write = IO.pipe - - child_pid = Process.fork { - read.close - write << "#{Process.ppid}\n" - write.close - exit! - } - - write.close - pid = read.gets - read.close - Process.wait(child_pid) - pid.to_i.should == Process.pid + ruby_exe("puts Process.ppid").should == "#{Process.pid}\n" end end end |
