mirror of
https://github.com/github/rails.git
synced 2026-01-30 08:48:06 -05:00
Fix render :location => ... test.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6762 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
require File.dirname(__FILE__) + '/../abstract_unit'
|
||||
|
||||
silence_warnings { Customer = Struct.new(:name, :id) }
|
||||
class Customer < Struct.new(:name, :id)
|
||||
def to_param
|
||||
id.to_s
|
||||
end
|
||||
end
|
||||
|
||||
class CustomersController < ActionController::Base
|
||||
end
|
||||
@@ -780,8 +784,8 @@ EOS
|
||||
map.resources :customers
|
||||
map.connect ':controller/:action/:id'
|
||||
end
|
||||
|
||||
|
||||
get :render_with_object_location
|
||||
assert_equal "http://test.host/customers/1", @response.headers["Location"]
|
||||
assert_equal "http://www.nextangle.com/customers/1", @response.headers["Location"]
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user