mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04: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'
|
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
|
class CustomersController < ActionController::Base
|
||||||
end
|
end
|
||||||
@@ -780,8 +784,8 @@ EOS
|
|||||||
map.resources :customers
|
map.resources :customers
|
||||||
map.connect ':controller/:action/:id'
|
map.connect ':controller/:action/:id'
|
||||||
end
|
end
|
||||||
|
|
||||||
get :render_with_object_location
|
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
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user