Merge pull request #3981 from choonkeat/master

Fix url_for options[:subdomain] to allow objects as values
This commit is contained in:
Jeremy Kemper
2011-12-14 07:07:05 -08:00
2 changed files with 9 additions and 1 deletions

View File

@@ -70,7 +70,7 @@ module ActionDispatch
host = ""
unless options[:subdomain] == false
host << (options[:subdomain] || extract_subdomain(options[:host], tld_length))
host << (options[:subdomain] || extract_subdomain(options[:host], tld_length)).to_param
host << "."
end
host << (options[:domain] || extract_domain(options[:host], tld_length))

View File

@@ -71,6 +71,14 @@ module AbstractController
)
end
def test_subdomain_may_be_object
model = mock(:to_param => 'api')
add_host!
assert_equal('http://api.basecamphq.com/c/a/i',
W.new.url_for(:subdomain => model, :controller => 'c', :action => 'a', :id => 'i')
)
end
def test_subdomain_may_be_removed
add_host!
assert_equal('http://basecamphq.com/c/a/i',