aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/stringio/chars_spec.rb
blob: 3383dcfc57cd161a147abe4a30807cee925a4515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative '../../spec_helper'
require 'stringio'
require_relative 'shared/each_char'

ruby_version_is ''...'3.0' do
  describe "StringIO#chars" do
    it_behaves_like :stringio_each_char, :chars
  end

  describe "StringIO#chars when self is not readable" do
    it_behaves_like :stringio_each_char_not_readable, :chars
  end
end