aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_base/metal_test.rb
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-03-19 18:04:00 -0700
committerwycats <wycats@gmail.com>2010-03-19 18:46:29 -0700
commite1c030edd8362bceab287523fba7ec6a76aa9beb (patch)
tree4a50bbbc9395bbaa504b506e923c4d1de2351156 /actionpack/test/controller/new_base/metal_test.rb
parent80095c54bdf134da1aaaca75653e7316bbcbdf70 (diff)
downloadrails-e1c030edd8362bceab287523fba7ec6a76aa9beb.tar.gz
rails-e1c030edd8362bceab287523fba7ec6a76aa9beb.tar.bz2
rails-e1c030edd8362bceab287523fba7ec6a76aa9beb.zip
Fixed a bunch of tests that failed in 1.9 because they assumed that a Rack response was a String.
Diffstat (limited to 'actionpack/test/controller/new_base/metal_test.rb')
-rw-r--r--actionpack/test/controller/new_base/metal_test.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/actionpack/test/controller/new_base/metal_test.rb b/actionpack/test/controller/new_base/metal_test.rb
index ab61fd98ee..45a6619eb4 100644
--- a/actionpack/test/controller/new_base/metal_test.rb
+++ b/actionpack/test/controller/new_base/metal_test.rb
@@ -18,6 +18,8 @@ module MetalTest
end
class TestMiddleware < ActiveSupport::TestCase
+ include RackTestUtils
+
def setup
@app = Rack::Builder.new do
use MetalTest::MetalMiddleware
@@ -29,14 +31,14 @@ module MetalTest
env = Rack::MockRequest.env_for("/authed")
response = @app.call(env)
- assert_equal "Hello World", response[2]
+ assert_equal "Hello World", body_to_string(response[2])
end
test "it can return a response using the normal AC::Metal techniques" do
env = Rack::MockRequest.env_for("/")
response = @app.call(env)
- assert_equal "Not authed!", response[2]
+ assert_equal "Not authed!", body_to_string(response[2])
assert_equal 401, response[0]
end
end