Sha256: 3267784d23f0f6d2b54a15d5dc7171085de810bc3155ec84462829ba74014fea
Contents?: true
Size: 864 Bytes
Versions: 64
Compression:
Stored size: 864 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' =begin describe "Process.fork" do not_supported_on :jruby, :windows do before :each do @file = tmp('i_exist') File.delete(@file) if File.exist?(@file) end after :each do File.delete(@file) if File.exist?(@file) end it "return nil for the child process" do child_id = Process.fork if child_id == nil File.open(@file,'w'){|f| f.write 'rubinius'} Process.exit! else Process.waitpid(child_id) end File.exist?(@file).should == true end it "runs a block in a child process" do pid = Process.fork { File.open(@file,'w'){|f| f.write 'rubinius'} Process.exit! } Process.waitpid(pid) File.exist?(@file).should == true end end end =end
Version data entries
64 entries across 64 versions & 1 rubygems