From 06591ad6b1aa55a9a05a17c1194a52999782fe3f Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Tue, 18 Dec 2007 13:37:10 +0000 Subject: * lib/rss/parser.rb, lib/rss/atom.rb, lib/rss/rss.rb, test/rss/rss-assertions.rb, test/rss/test_atom.rb: use pack/unpack("m") instead of base64 library. * lib/webrick/httpproxy.rb: use delete("\n") instead of chomp/chop because the result of pack("m") might be multi-line. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rss/rss-assertions.rb | 2 +- test/rss/test_atom.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test/rss') diff --git a/test/rss/rss-assertions.rb b/test/rss/rss-assertions.rb index 41e6cd62c5..dd06fb2572 100644 --- a/test/rss/rss-assertions.rb +++ b/test/rss/rss-assertions.rb @@ -570,7 +570,7 @@ EOA text << char char.succ! end - base64_content = Base64.encode64(Zlib::Deflate.deflate(text)) + base64_content = [Zlib::Deflate.deflate(text)].pack("m").delete("\n") [false, true].each do |with_space| xml_content = base64_content diff --git a/test/rss/test_atom.rb b/test/rss/test_atom.rb index c442c753b2..1f65008fa0 100644 --- a/test/rss/test_atom.rb +++ b/test/rss/test_atom.rb @@ -658,7 +658,7 @@ module RSS content.content = original_content xml = REXML::Document.new(content.to_s).root assert_rexml_element([], {"type" => type}, - Base64.encode64(original_content), xml) + [original_content].pack("m").delete("\n"), xml) end end -- cgit v1.2.3