1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/rubyspec/core/io/binmode_spec.rb
eregon 95e8c48dd3 Add in-tree mspec and ruby/spec
* For easier modifications of ruby/spec by MRI developers.
* .gitignore: track changes under spec.
* spec/mspec, spec/rubyspec: add in-tree mspec and ruby/spec.
  These files can therefore be updated like any other file in MRI.
  Instructions are provided in spec/README.
  [Feature #13156] [ruby-core:79246]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-05-07 12:04:49 +00:00

60 lines
1.3 KiB
Ruby

require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
describe "IO#binmode" do
before :each do
@name = tmp("io_binmode.txt")
end
after :each do
@io.close if @io and !@io.closed?
rm_r @name
end
it "returns self" do
@io = new_io(@name)
@io.binmode.should equal(@io)
end
it "raises an IOError on closed stream" do
lambda { IOSpecs.closed_io.binmode }.should raise_error(IOError)
end
it "sets external encoding to binary" do
@io = new_io(@name, "w:utf-8")
@io.binmode
@io.external_encoding.should == Encoding::BINARY
end
it "sets internal encoding to nil" do
@io = new_io(@name, "w:utf-8:ISO-8859-1")
@io.binmode
@io.internal_encoding.should == nil
end
end
describe "IO#binmode?" do
before :each do
@filename = tmp("IO_binmode_file")
@file = File.open(@filename, "w")
@duped = nil
end
after :each do
@duped.close if @duped
@file.close
rm_r @filename
end
it "is true after a call to IO#binmode" do
@file.binmode?.should be_false
@file.binmode
@file.binmode?.should be_true
end
it "propagates to dup'ed IO objects" do
@file.binmode
@duped = @file.dup
@duped.binmode?.should == @file.binmode?
end
end