2017-05-07 12:04:49 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "IO#readline" do
|
|
|
|
before :each do
|
|
|
|
@io = IOSpecs.io_fixture "lines.txt"
|
|
|
|
end
|
|
|
|
|
|
|
|
after :each do
|
|
|
|
@io.close unless @io.closed?
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the next line on the stream" do
|
|
|
|
@io.readline.should == "Voici la ligne une.\n"
|
|
|
|
@io.readline.should == "Qui è la linea due.\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "goes back to first position after a rewind" do
|
|
|
|
@io.readline.should == "Voici la ligne une.\n"
|
|
|
|
@io.rewind
|
|
|
|
@io.readline.should == "Voici la ligne une.\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns characters after the position set by #seek" do
|
|
|
|
@io.seek(1)
|
|
|
|
@io.readline.should == "oici la ligne une.\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises EOFError on end of stream" do
|
|
|
|
IOSpecs.lines.length.times { @io.readline }
|
2019-07-27 12:40:09 +02:00
|
|
|
-> { @io.readline }.should raise_error(EOFError)
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises IOError on closed stream" do
|
2019-07-27 12:40:09 +02:00
|
|
|
-> { IOSpecs.closed_io.readline }.should raise_error(IOError)
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "assigns the returned line to $_" do
|
|
|
|
IOSpecs.lines.each do |line|
|
|
|
|
@io.readline
|
|
|
|
$_.should == line
|
|
|
|
end
|
|
|
|
end
|
2017-10-28 15:15:48 +00:00
|
|
|
|
2019-04-27 18:53:23 +02:00
|
|
|
describe "when passed chomp" do
|
|
|
|
it "returns the first line without a trailing newline character" do
|
|
|
|
@io.readline(chomp: true).should == IOSpecs.lines_without_newline_characters[0]
|
2017-10-28 15:15:48 +00:00
|
|
|
end
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|