summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/each_char_spec.rb
blob: 14b2f09a177dc7223f9b1f255690eebfa63826e5 (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, :each_char
end