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

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