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/lines_spec.rb

54 lines
1.1 KiB
Ruby
Raw Normal View History

require_relative '../../spec_helper'
require 'stringio'
require_relative 'shared/each'
2020-12-04 16:32:14 +01:00
ruby_version_is ''...'3.0' do
describe "StringIO#lines when passed a separator" do
2020-12-27 17:35:32 +01:00
before :each do
@verbose, $VERBOSE = $VERBOSE, nil
end
after :each do
$VERBOSE = @verbose
end
it_behaves_like :stringio_each_separator, :lines
end
describe "StringIO#lines when passed no arguments" do
2020-12-27 17:35:32 +01:00
before :each do
@verbose, $VERBOSE = $VERBOSE, nil
end
after :each do
$VERBOSE = @verbose
end
it_behaves_like :stringio_each_no_arguments, :lines
end
describe "StringIO#lines when self is not readable" do
2020-12-27 17:35:32 +01:00
before :each do
@verbose, $VERBOSE = $VERBOSE, nil
end
after :each do
$VERBOSE = @verbose
end
it_behaves_like :stringio_each_not_readable, :lines
end
describe "StringIO#lines when passed chomp" do
2020-12-27 17:35:32 +01:00
before :each do
@verbose, $VERBOSE = $VERBOSE, nil
end
after :each do
$VERBOSE = @verbose
end
it_behaves_like :stringio_each_chomp, :lines
end
end