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
卜部昌平 43b95bafd5
delete deprecated IO-like methods
This commit deletes
{IO,ARGF,StringIO,Zib::GZipReader}#{bytes,chars,lines,codepoints}, which
have been deprecated since c47c095b97.

Note that String also has those methods.  They are neither depreacted
nor deleted because they are not aliases of counterpart each_something.
2020-12-03 12:47:51 +09:00

21 lines
580 B
Ruby

require_relative '../../spec_helper'
require 'stringio'
require_relative 'shared/each'
ruby_version_is ''...'2.8' do
describe "StringIO#lines when passed a separator" do
it_behaves_like :stringio_each_separator, :lines
end
describe "StringIO#lines when passed no arguments" do
it_behaves_like :stringio_each_no_arguments, :lines
end
describe "StringIO#lines when self is not readable" do
it_behaves_like :stringio_each_not_readable, :lines
end
describe "StringIO#lines when passed chomp" do
it_behaves_like :stringio_each_chomp, :lines
end
end