Sha256: 18eac57f6087f498ef8d9cef563468e14f8239ef969c2474ffc7dd17ba961aad
Contents?: true
Size: 521 Bytes
Versions: 52
Compression:
Stored size: 521 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) if System.get_property('platform') != 'APPLE' # TODO: share with Kernel.abort, abort. describe "Process.abort" do before :each do @name = tmp("process_abort.txt") end after :each do rm_r @name end platform_is_not :windows do it "terminates execution immediately" do Process.fork do Process.abort touch(@name) { |f| f.write 'rubinius' } end File.exists?(@name).should == false end end end end
Version data entries
52 entries across 52 versions & 2 rubygems