summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/chars_spec.rb
blob: e3879c2cffce6641cbe55025de0cd1826747f4cb (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 ''...'2.8' 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