2017-05-07 08:04:49 -04:00
|
|
|
require File.expand_path('../../../spec_helper', __FILE__)
|
|
|
|
require File.expand_path('../fixtures/classes', __FILE__)
|
|
|
|
require File.expand_path('../shared/each', __FILE__)
|
|
|
|
|
|
|
|
describe "StringIO#each when passed a separator" do
|
|
|
|
it_behaves_like :stringio_each_separator, :each
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "StringIO#each when passed no arguments" do
|
|
|
|
it_behaves_like :stringio_each_no_arguments, :each
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "StringIO#each when self is not readable" do
|
|
|
|
it_behaves_like :stringio_each_not_readable, :each
|
|
|
|
end
|
2017-10-28 11:15:48 -04:00
|
|
|
|
|
|
|
ruby_version_is "2.4" do
|
|
|
|
describe "StringIO#each when passed chomp" do
|
|
|
|
it_behaves_like :stringio_each_chomp, :each
|
|
|
|
end
|
|
|
|
end
|