summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 04:24:21 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 04:24:21 +0000
commitf3945617bd2ed8f4282bc21023f0aea1aa166654 (patch)
tree74fc70fccfc2555c0898eececb2160f69387ced6
parent3410fd681259e17432ec632327a85fc8eaaca8d8 (diff)
* 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
-rw-r--r--ChangeLog5
-rw-r--r--test/ruby/test_io_m17n.rb4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 701e031442..378e2a07f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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,
diff --git a/test/ruby/test_io_m17n.rb b/test/ruby/test_io_m17n.rb
index e90d1dd916..d3de901f6f 100644
--- a/test/ruby/test_io_m17n.rb
+++ b/test/ruby/test_io_m17n.rb
@@ -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)
}
}