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

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.
This commit is contained in:
卜部昌平 2020-07-27 11:15:50 +09:00 committed by Nobuyoshi Nakada
parent 84eb2bfab9
commit 43b95bafd5
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
20 changed files with 196 additions and 360 deletions

View file

@ -2,24 +2,27 @@ require_relative '../../spec_helper'
require_relative 'fixtures/classes'
require_relative 'shared/codepoints'
# See redmine #1667
describe "IO#codepoints" do
it_behaves_like :io_codepoints, :codepoints
end
ruby_version_is ''...'2.8' do
describe "IO#codepoints" do
before :each do
@io = IOSpecs.io_fixture "lines.txt"
# See redmine #1667
describe "IO#codepoints" do
it_behaves_like :io_codepoints, :codepoints
end
after :each do
@io.close unless @io.closed?
end
describe "IO#codepoints" do
before :each do
@io = IOSpecs.io_fixture "lines.txt"
end
it "calls the given block" do
r = []
@io.codepoints { |c| r << c }
r[24].should == 232
r.last.should == 10
after :each do
@io.close unless @io.closed?
end
it "calls the given block" do
r = []
@io.codepoints { |c| r << c }
r[24].should == 232
r.last.should == 10
end
end
end