Once deleting a Rate, the user should be redirected back to the user rate list. #1919

This commit is contained in:
Eric Davis
2009-01-20 11:27:40 -08:00
parent 3fccd98102
commit a294ff0154
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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