1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/stringio/each_spec.rb

22 lines
632 B
Ruby
Raw Normal View History

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
ruby_version_is "2.4" do
describe "StringIO#each when passed chomp" do
it_behaves_like :stringio_each_chomp, :each
end
end