From 020ed6fa1fa5f73e5af88e3c9cdff09293e76789 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Sun, 31 Jul 2005 10:31:47 +0000 Subject: Allow remote_addr to be queried on TestRequest #1668 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1960 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/test_test.rb | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'actionpack/test') diff --git a/actionpack/test/controller/test_test.rb b/actionpack/test/controller/test_test.rb index b27f3e9423..570f92e6e4 100644 --- a/actionpack/test/controller/test_test.rb +++ b/actionpack/test/controller/test_test.rb @@ -37,7 +37,11 @@ HTML end def test_only_one_param - render :text => (@params[:left] && @params[:right]) ? "EEP, Both here!" : "OK" + render :text => (params[:left] && params[:right]) ? "EEP, Both here!" : "OK" + end + + def test_remote_addr + render :text => (request.remote_addr || "not specified") end end @@ -164,4 +168,13 @@ HTML assert ActionController::Routing::Routes assert_equal routes_id, ActionController::Routing::Routes.object_id end + + def test_remote_addr + get :test_remote_addr + assert_equal "0.0.0.0", @response.body + + @request.remote_addr = "192.0.0.1" + get :test_remote_addr + assert_equal "192.0.0.1", @response.body + end end -- cgit v1.2.3