From 1c0163e50c789a01d9e96aecf2014e28aa9fef51 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Tue, 7 Mar 2006 01:07:54 +0000 Subject: A few minor tweaks to the integration testing stuff git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3805 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/integration_test.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'actionpack/lib/action_controller/integration_test.rb') diff --git a/actionpack/lib/action_controller/integration_test.rb b/actionpack/lib/action_controller/integration_test.rb index 35fec04dd3..088992e13f 100644 --- a/actionpack/lib/action_controller/integration_test.rb +++ b/actionpack/lib/action_controller/integration_test.rb @@ -93,6 +93,10 @@ module ActionController @host end + # To make setting the host more natural when using a session object + # directly: foo.host = "blah" + alias_method :host=, :host! + # Follow a single redirect response. If the last response was not a # redirect, an exception will be raised. Otherwise, the redirect is # performed on the location header. @@ -173,7 +177,7 @@ module ActionController def interpret_uri(path) location = URI.parse(path) https! URI::HTTPS === location - host! location.host + host! location.host if location.host location.query ? "#{location.path}?#{location.query}" : location.path end -- cgit v1.2.3