aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/stringio/eof_spec.rb
blob: a5bb3dbe3d87f36f2afc027ab430d086f984b98f (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/eof', __FILE__)

describe "StringIO#eof?" do
  it_behaves_like :stringio_eof, :eof?
end

describe "StringIO#eof" do
  it_behaves_like :stringio_eof, :eof
end