Commit f2021227 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang Committed by Eric Davis

Adds a test for AuthSourcesController#destroy with users.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5155 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent a59bd805
......@@ -66,18 +66,30 @@ class AuthSourcesControllerTest < ActionController::TestCase
end
context "post :destroy" do
setup do
@auth_source = AuthSource.generate!(:name => 'TestEdit')
end
context "without users" do
setup do
@auth_source = AuthSource.generate!(:name => 'TestEdit')
post :destroy, :id => @auth_source.id
end
should_respond_with :redirect
should_redirect_to("index") {{:action => 'index'}}
should_set_the_flash_to /deletion/i
end
should "be tested with users"
context "with users" do
setup do
User.generate!(:auth_source => @auth_source)
post :destroy, :id => @auth_source.id
end
should_respond_with :redirect
should "not destroy the AuthSource" do
assert AuthSource.find(@auth_source.id)
end
end
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment