aboutsummaryrefslogtreecommitdiffstats
path: root/test/zlib
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-29 16:17:26 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-29 16:17:26 +0000
commit80918e2ac941b262b4e3be644292676e6c5d5277 (patch)
tree70667e0cfc9700f11bc23f1b9ed32ef67a5291bb /test/zlib
parentebabbc6cb92f818021f85275130f3c96fdb4f0fb (diff)
downloadruby-80918e2ac941b262b4e3be644292676e6c5d5277.tar.gz
* ext/zlib/zlib.c (gzfile_read_all): use gzfile_newstr;
set and convert its encoding. [ruby-dev:38304] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/zlib')
-rw-r--r--test/zlib/test_zlib.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/zlib/test_zlib.rb b/test/zlib/test_zlib.rb
index aa3059d5b1..abb3ea32b3 100644
--- a/test/zlib/test_zlib.rb
+++ b/test/zlib/test_zlib.rb
@@ -470,10 +470,12 @@ if defined? Zlib
def test_read
t = Tempfile.new("test_zlib_gzip_reader")
t.close
- Zlib::GzipWriter.open(t.path) {|gz| gz.print("foobar") }
+ str = "\u3042\u3044\u3046"
+ Zlib::GzipWriter.open(t.path) {|gz| gz.print(str) }
- f = Zlib::GzipReader.open(t.path)
+ f = Zlib::GzipReader.open(t.path, encoding: "UTF-8")
assert_raise(ArgumentError) { f.read(-1) }
+ assert_equal(str, f.read)
end
def test_readpartial