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

* test/ruby/test_io_m17n.rb (test_write_noenc): don't mix text and

binary mode.  [ruby-dev:32743]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-12-25 04:24:21 +00:00
parent 3410fd6812
commit f3945617bd
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Tue Dec 25 13:23:13 2007 Tanaka Akira <akr@fsij.org>
* test/ruby/test_io_m17n.rb (test_write_noenc): don't mix text and
binary mode. [ruby-dev:32743]
Tue Dec 25 13:13:09 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* README.EXT.ja, dir.c, eval.c, eval_intern.h, lex.c.src,

View file

@ -300,14 +300,14 @@ EOT
end
def test_write_noenc
src = "\xc2\xa1\n"
src = "\xc2\xa1\n".force_encoding("ascii-8bit")
with_tmpdir {
open('tmp', "w") {|f|
ENCS.each {|enc|
f.write src.dup.force_encoding(enc)
}
}
open('tmp', 'rb') {|f|
open('tmp', 'r:ascii-8bit') {|f|
assert_equal(src*ENCS.length, f.read)
}
}