summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/each_char_spec.rb
blob: 7305162ee6fa96766408e10d2d231a67f9adb4b9 (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#each_char" do
  it_behaves_like :stringio_each_char, :each_char
end

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