2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
|
|
|
require_relative 'shared/codepoints'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
# See redmine #1667
|
|
|
|
describe "IO#codepoints" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :io_codepoints, :codepoints
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "IO#codepoints" do
|
|
|
|
before :each do
|
|
|
|
@io = IOSpecs.io_fixture "lines.txt"
|
|
|
|
end
|
|
|
|
|
|
|
|
after :each do
|
|
|
|
@io.close unless @io.closed?
|
|
|
|
end
|
|
|
|
|
|
|
|
it "calls the given block" do
|
|
|
|
r = []
|
|
|
|
@io.codepoints { |c| r << c }
|
|
|
|
r[24].should == 232
|
|
|
|
r.last.should == 10
|
|
|
|
end
|
|
|
|
end
|