diff options
author | 卜部昌平 <[email protected]> | 2020-07-27 11:15:50 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-12-03 12:47:51 +0900 |
commit | 43b95bafd57d04c8fb401d3a9b52aca3f5b4b0be (patch) | |
tree | 642b463fce3ff7c5d683eb6e8068cf2dfa2c14df /spec/ruby/library/stringio/each_codepoint_spec.rb | |
parent | 84eb2bfab940fc9c6962c10ede7f72cee3fb9899 (diff) |
delete deprecated IO-like methods
This commit deletes
{IO,ARGF,StringIO,Zib::GZipReader}#{bytes,chars,lines,codepoints}, which
have been deprecated since c47c095b9740e7c19d6fdca29ab661c1089221d4.
Note that String also has those methods. They are neither depreacted
nor deleted because they are not aliases of counterpart each_something.
Diffstat (limited to 'spec/ruby/library/stringio/each_codepoint_spec.rb')
-rw-r--r-- | spec/ruby/library/stringio/each_codepoint_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/stringio/each_codepoint_spec.rb b/spec/ruby/library/stringio/each_codepoint_spec.rb index 85aa34d9d8..f18de22aad 100644 --- a/spec/ruby/library/stringio/each_codepoint_spec.rb +++ b/spec/ruby/library/stringio/each_codepoint_spec.rb @@ -5,5 +5,5 @@ require_relative 'shared/codepoints' # See redmine #1667 describe "StringIO#each_codepoint" do - it_behaves_like :stringio_codepoints, :codepoints + it_behaves_like :stringio_codepoints, :each_codepoint end |