2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "ARGF.binmode" do
|
|
|
|
before :each do
|
|
|
|
@file1 = fixture __FILE__, "file1.txt"
|
|
|
|
@file2 = fixture __FILE__, "file2.txt"
|
|
|
|
@bin_file = fixture __FILE__, "bin_file.txt"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns self" do
|
2017-06-29 14:35:37 +00:00
|
|
|
argf [@bin_file] do
|
|
|
|
@argf.binmode.should equal @argf
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
platform_is :windows do
|
|
|
|
it "puts reading into binmode" do
|
|
|
|
argf [@bin_file, @bin_file] do
|
|
|
|
@argf.gets.should == "test\n"
|
|
|
|
@argf.binmode
|
|
|
|
@argf.gets.should == "test\r\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-20 09:19:39 +09:00
|
|
|
it "puts all subsequent streams reading through ARGF into binmode" do
|
2017-05-07 12:04:49 +00:00
|
|
|
argf [@bin_file, @bin_file] do
|
|
|
|
@argf.binmode
|
|
|
|
@argf.gets.should == "test\r\n"
|
|
|
|
@argf.gets.should == "test\r\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-27 21:02:36 +02:00
|
|
|
it "sets the file's encoding to BINARY" do
|
2017-06-29 14:35:37 +00:00
|
|
|
argf [@bin_file, @file1] do
|
|
|
|
@argf.binmode
|
2020-05-03 12:28:29 +02:00
|
|
|
@argf.should.binmode?
|
2019-06-27 21:02:36 +02:00
|
|
|
@argf.gets.encoding.should == Encoding::BINARY
|
2017-06-29 14:35:37 +00:00
|
|
|
@argf.skip
|
2019-06-27 21:02:36 +02:00
|
|
|
@argf.read.encoding.should == Encoding::BINARY
|
2017-06-29 14:35:37 +00:00
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
end
|