I am testing my update action
render :update do |page|
page.redirect_to :controller => 'proposals', :action => 'list'
end
if I asser a response
post :update
assert_response 200
it’s OK
but not if I try to assert the redirect
assert_redirected_to “/proposals/list/”
is it the right assertion ?
tfy help
kad