diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-24 06:12:08 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-24 06:12:08 +0000 |
commit | 274a04ba2140086ef9c704ce7c2d4256ce500835 (patch) | |
tree | ab09ece335e14ee3fc162873cb1105703b6d3ea9 | |
parent | 3b6cd02f1eea14cc53c5d8848c582958bc218db4 (diff) | |
download | redmine-274a04ba2140086ef9c704ce7c2d4256ce500835.tar.gz redmine-274a04ba2140086ef9c704ce7c2d4256ce500835.zip |
remove trailing white-spaces from test/functional/auth_sources_controller_test.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6578 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/functional/auth_sources_controller_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/auth_sources_controller_test.rb b/test/functional/auth_sources_controller_test.rb index 5f65f419b..542228044 100644 --- a/test/functional/auth_sources_controller_test.rb +++ b/test/functional/auth_sources_controller_test.rb @@ -69,7 +69,7 @@ class AuthSourcesControllerTest < ActionController::TestCase setup do @auth_source = AuthSource.generate!(:name => 'TestEdit') end - + context "without users" do setup do post :destroy, :id => @auth_source.id @@ -79,13 +79,13 @@ class AuthSourcesControllerTest < ActionController::TestCase should_redirect_to("index") {{:action => 'index'}} should_set_the_flash_to /deletion/i end - + 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) |