2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
require "stringio"
|
2018-03-04 10:09:32 -05:00
|
|
|
require_relative 'shared/read'
|
|
|
|
require_relative 'shared/sysread'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "StringIO#read_nonblock when passed length, buffer" do
|
|
|
|
it_behaves_like :stringio_read, :read_nonblock
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "StringIO#read_nonblock when passed length" do
|
|
|
|
it_behaves_like :stringio_read_length, :read_nonblock
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "StringIO#read_nonblock when passed nil" do
|
|
|
|
it_behaves_like :stringio_read_nil, :read_nonblock
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "StringIO#read_nonblock when passed length" do
|
|
|
|
it_behaves_like :stringio_sysread_length, :read_nonblock
|
|
|
|
end
|
2018-04-28 15:50:06 -04:00
|
|
|
|
|
|
|
describe "StringIO#read_nonblock" do
|
|
|
|
|
|
|
|
it "accepts an exception option" do
|
|
|
|
stringio = StringIO.new('foo')
|
|
|
|
stringio.read_nonblock(3, exception: false).should == 'foo'
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|