summaryrefslogtreecommitdiff
path: root/spec/ruby/core/argf/chars_spec.rb
blob: 6af73cdabb4d685af6e05b53bad8b98de32bd85d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require_relative '../../spec_helper'
require_relative 'shared/each_char'

ruby_version_is ''...'3.0' do
  describe "ARGF.chars" do
    before :each do
      @verbose, $VERBOSE = $VERBOSE, nil
    end

    after :each do
      $VERBOSE = @verbose
    end

    it_behaves_like :argf_each_char, :chars
  end
end