aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-05 10:36:24 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-05 10:36:24 +0000
commitff08b5707c900ab6497a111b6d4cc72ef38d5b77 (patch)
tree535c5f6015a042f333babdeb567f4276e38c401a /test
parent17d3f8645bcddde4b4bfd3b85b0aa199451b5e77 (diff)
downloadruby-ff08b5707c900ab6497a111b6d4cc72ef38d5b77.tar.gz
Use binread because webrick also uses binread
Reported-by: MSP-Greg [Bug #15203] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64924 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/webrick/test_filehandler.rb4
-rw-r--r--test/webrick/test_httprequest.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/webrick/test_filehandler.rb b/test/webrick/test_filehandler.rb
index 99bc1420b8..7095038189 100644
--- a/test/webrick/test_filehandler.rb
+++ b/test/webrick/test_filehandler.rb
@@ -98,7 +98,7 @@ class WEBrick::TestFileHandler < Test::Unit::TestCase
config = { :DocumentRoot => File.dirname(__FILE__), }
this_file = File.basename(__FILE__)
filesize = File.size(__FILE__)
- this_data = File.open(__FILE__, "rb") {|f| f.read}
+ this_data = File.binread(__FILE__)
range = nil
bug2593 = '[ruby-dev:40030]'
@@ -114,7 +114,7 @@ class WEBrick::TestFileHandler < Test::Unit::TestCase
http.request(req){|res|
assert_equal("200", res.code, log.call)
assert_equal("text/plain", res.content_type, log.call)
- assert_equal(File.read(__FILE__), res.body, log.call)
+ assert_equal(this_data, res.body, log.call)
}
req = Net::HTTP::Get.new("/#{this_file}", "range"=>"bytes=#{filesize-100}-")
diff --git a/test/webrick/test_httprequest.rb b/test/webrick/test_httprequest.rb
index 678efed1ca..592f857f65 100644
--- a/test/webrick/test_httprequest.rb
+++ b/test/webrick/test_httprequest.rb
@@ -237,7 +237,7 @@ GET /
def test_chunked
crlf = "\x0d\x0a"
- expect = File.read(__FILE__).freeze
+ expect = File.binread(__FILE__).freeze
msg = <<-_end_of_message_
POST /path HTTP/1.1
Host: test.ruby-lang.org:8080