1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/argf/readline_spec.rb

24 lines
538 B
Ruby
Raw Normal View History

require_relative '../../spec_helper'
require_relative 'shared/gets'
describe "ARGF.readline" do
it_behaves_like :argf_gets, :readline
end
describe "ARGF.readline" do
it_behaves_like :argf_gets_inplace_edit, :readline
end
describe "ARGF.readline" do
before :each do
@file1 = fixture __FILE__, "file1.txt"
@file2 = fixture __FILE__, "file2.txt"
end
it "raises an EOFError when reaching end of files" do
argf [@file1, @file2] do
2019-07-27 06:40:09 -04:00
-> { while @argf.readline; end }.should raise_error(EOFError)
end
end
end