2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "IO#pid" do
|
|
|
|
before :each do
|
|
|
|
@io = IOSpecs.io_fixture "lines.txt"
|
|
|
|
end
|
|
|
|
|
|
|
|
after :each do
|
|
|
|
@io.close if @io
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns nil for IO not associated with a process" do
|
|
|
|
@io.pid.should == nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "IO#pid" do
|
|
|
|
before :each do
|
|
|
|
@io = IO.popen ruby_cmd('STDIN.read'), "r+"
|
|
|
|
end
|
|
|
|
|
|
|
|
after :each do
|
|
|
|
@io.close if @io && !@io.closed?
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the ID of a process associated with stream" do
|
|
|
|
@io.pid.should_not be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an IOError on closed stream" do
|
|
|
|
@io.close
|
2019-07-27 12:40:09 +02:00
|
|
|
-> { @io.pid }.should raise_error(IOError)
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
end
|