summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-26 11:25:45 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-26 11:25:45 +0000
commit12d48f4ef242eaa48844e9dbbbd5ae22b87870c3 (patch)
treec769af637d92fb1f5dfee88e5f052d18177b2d13 /test
parent6190bb4d8ad7a07ddb1da8fc687b20612743a34a (diff)
* test/ruby/test_argf.rb (TestArgf#test_chars): since marshal data is
binary, shouldn't pass via text mode. use base64 encoded data. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37862 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_argf.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_argf.rb b/test/ruby/test_argf.rb
index a58b70db52..7fb9348c1e 100644
--- a/test/ruby/test_argf.rb
+++ b/test/ruby/test_argf.rb
@@ -781,9 +781,9 @@ class TestArgf < Test::Unit::TestCase
def test_chars
ruby('-e', <<-SRC, @t1.path, @t2.path, @t3.path) do |f|
- print Marshal.dump(ARGF.chars.to_a)
+ print [Marshal.dump(ARGF.chars.to_a)].pack('m')
SRC
- assert_equal(["1", "\n", "2", "\n", "3", "\n", "4", "\n", "5", "\n", "6", "\n"], Marshal.load(f.read))
+ assert_equal(["1", "\n", "2", "\n", "3", "\n", "4", "\n", "5", "\n", "6", "\n"], Marshal.load(f.read.unpack('m').first))
end
end