Once deleting a Rate, the user should be redirected back to the user rate list. #1919
This commit is contained in:
@@ -108,7 +108,7 @@ class RatesController < ApplicationController
|
||||
@rate.destroy
|
||||
|
||||
respond_to do |format|
|
||||
format.html { redirect_to(rates_url) }
|
||||
format.html { redirect_to(rates_url(:user_id => @rate.user_id)) }
|
||||
format.xml { head :ok }
|
||||
end
|
||||
end
|
||||
|
||||
@@ -421,10 +421,10 @@ describe RatesController, "as an administrator" do
|
||||
delete :destroy, :id => "37"
|
||||
end
|
||||
|
||||
it "should redirect to the rates list" do
|
||||
it "should redirect to the user's rates list" do
|
||||
Rate.stub!(:find).and_return(mock_rate(:destroy => true))
|
||||
delete :destroy, :id => "1"
|
||||
response.should redirect_to(rates_url)
|
||||
response.should redirect_to(rates_url(:user_id => @user.id))
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user