mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
43b95bafd5
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.
8 lines
185 B
Ruby
8 lines
185 B
Ruby
require_relative '../../spec_helper'
|
|
require_relative 'shared/each_char'
|
|
|
|
ruby_version_is ''...'2.8' do
|
|
describe "ARGF.chars" do
|
|
it_behaves_like :argf_each_char, :chars
|
|
end
|
|
end
|