From 6183611108c571dbed29dfe2854b9f06757fd27f Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 30 Dec 2010 02:32:41 +0000 Subject: http_response: do not account for $, being set It's a minor garbage reduction, but nobody uses "$,", and if they did, they'd break things in the Ruby standard library as well as Rack, so let anybody who uses "$," shoot themselves in the foot. --- test/unit/test_response.rb | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'test') diff --git a/test/unit/test_response.rb b/test/unit/test_response.rb index e5245e8..7dcf977 100644 --- a/test/unit/test_response.rb +++ b/test/unit/test_response.rb @@ -29,18 +29,6 @@ class ResponseTest < Test::Unit::TestCase assert_equal 1, out.string.split(/\r\n/).grep(/^Status: 200 OK/).size end - def test_response_OFS_set - old_ofs = $, - $, = "\f\v" - out = StringIO.new - http_response_write(out,[200, {"X-k" => "cd","X-y" => "z"}, ["cool"]]) - assert out.closed? - resp = out.string - assert ! resp.include?("\f\v"), "output didn't use $, ($OFS)" - ensure - $, = old_ofs - end - def test_response_200 io = StringIO.new http_response_write(io, [200, {}, []]) -- cgit v1.2.3-24-ge0c7