summaryrefslogtreecommitdiff
path: root/test
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 /test
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
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io_m17n.rb4
1 files changed, 2 insertions, 2 deletions
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)
}
}