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/core/argf/chars_spec.rb

17 lines
309 B
Ruby
Raw Normal View History

require_relative '../../spec_helper'
require_relative 'shared/each_char'
2020-12-04 10:32:14 -05:00
ruby_version_is ''...'3.0' do
describe "ARGF.chars" do
2020-12-27 11:35:32 -05:00
before :each do
@verbose, $VERBOSE = $VERBOSE, nil
end
after :each do
$VERBOSE = @verbose
end
it_behaves_like :argf_each_char, :chars
end
end