2017-05-07 08:04:49 -04:00
|
|
|
require File.expand_path('../../../spec_helper', __FILE__)
|
|
|
|
require 'stringio'
|
|
|
|
require File.expand_path('../shared/getc', __FILE__)
|
|
|
|
|
|
|
|
describe "StringIO#getc" do
|
|
|
|
it_behaves_like :stringio_getc, :getc
|
|
|
|
|
2017-10-28 11:15:48 -04:00
|
|
|
it "returns the character at the current position" do
|
2017-05-07 08:04:49 -04:00
|
|
|
io = StringIO.new("example")
|
|
|
|
|
|
|
|
io.send(@method).should == ?e
|
|
|
|
io.send(@method).should == ?x
|
|
|
|
io.send(@method).should == ?a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "StringIO#getc when self is not readable" do
|
|
|
|
it_behaves_like :stringio_getc_not_readable, :getc
|
|
|
|
end
|