Merge pull request #553 from amoeba/add_specs_for_agent_destroy

Add two specs for Agent#destroy to cover redirects
This commit is contained in:
Andrew Cantino 2014-09-27 21:43:20 -07:00
commit 6661589743

View file

@ -292,5 +292,19 @@ describe AgentsController do
delete :destroy, :id => agents(:jane_website_agent).to_param
}.should raise_error(ActiveRecord::RecordNotFound)
end
it "redirects correctly when the Agent is deleted from the Agent itself" do
sign_in users(:bob)
delete :destroy, :id => agents(:bob_website_agent).to_param
response.should redirect_to agents_path
end
it "redirects correctly when the Agent is deleted from a Scenario" do
sign_in users(:bob)
delete :destroy, :id => agents(:bob_weather_agent).to_param, :return => scenario_path(scenarios(:bob_weather)).to_param
response.should redirect_to scenario_path(scenarios(:bob_weather))
end
end
end