]> source.dussan.org Git - redmine.git/commitdiff
svn propset "svn:eol-style" native test/functional/auth_sources_controller_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 1 Jan 2012 22:18:25 +0000 (22:18 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 1 Jan 2012 22:18:25 +0000 (22:18 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8466 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/auth_sources_controller_test.rb

index dc8c8a9bc27ec6202f1bcfaa6dfb262b36128dcc..e3cb1d3b373e43c8fb86e63c58d6c1f28a4657d9 100644 (file)
@@ -1,90 +1,90 @@
-# Redmine - project management software\r
-# Copyright (C) 2006-2011  Jean-Philippe Lang\r
-#\r
-# This program is free software; you can redistribute it and/or\r
-# modify it under the terms of the GNU General Public License\r
-# as published by the Free Software Foundation; either version 2\r
-# of the License, or (at your option) any later version.\r
-#\r
-# This program is distributed in the hope that it will be useful,\r
-# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-# GNU General Public License for more details.\r
-#\r
-# You should have received a copy of the GNU General Public License\r
-# along with this program; if not, write to the Free Software\r
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.\r
-\r
-require File.expand_path('../../test_helper', __FILE__)\r
-\r
-class AuthSourcesControllerTest < ActionController::TestCase\r
-  fixtures :users\r
-\r
-  def setup\r
-    @request.session[:user_id] = 1\r
-  end\r
-\r
-  def test_index\r
-    get :index\r
-\r
-    assert_response :success\r
-    assert_template 'index'\r
-    assert_not_nil assigns(:auth_sources)\r
-  end\r
-\r
-  def test_new\r
-    get :new\r
-\r
-    assert_response :success\r
-    assert_template 'new'\r
-    assert_kind_of AuthSource, assigns(:auth_source)\r
-    assert assigns(:auth_source).new_record?\r
-  end\r
-\r
-  def test_create\r
-    assert_difference 'AuthSource.count' do\r
-      post :create, :auth_source => {:name => 'Test'}\r
-    end\r
-\r
-    assert_redirected_to '/auth_sources'\r
-    auth_source = AuthSource.first(:order => 'id DESC')\r
-    assert_equal 'Test', auth_source.name\r
-  end\r
-\r
-  def test_edit\r
-    auth_source = AuthSource.generate!(:name => 'TestEdit')\r
-    get :edit, :id => auth_source.id\r
-\r
-    assert_response :success\r
-    assert_template 'edit'\r
-    assert_equal auth_source, assigns(:auth_source)\r
-  end\r
-\r
-  def test_update\r
-    auth_source = AuthSource.generate!(:name => 'TestEdit')\r
-    post :update, :id => auth_source.id, :auth_source => {:name => 'TestUpdate'}\r
-\r
-    assert_redirected_to '/auth_sources'\r
-    assert_equal 'TestUpdate', auth_source.reload.name\r
-  end\r
-\r
-  def test_destroy_without_users\r
-    auth_source = AuthSource.generate!(:name => 'TestEdit')\r
-    assert_difference 'AuthSource.count', -1 do\r
-      post :destroy, :id => auth_source.id\r
-    end\r
-\r
-    assert_redirected_to '/auth_sources'\r
-  end\r
-\r
-  def test_destroy_with_users\r
-    auth_source = AuthSource.generate!(:name => 'TestEdit')\r
-    User.generate!(:auth_source => auth_source)\r
-    assert_no_difference 'AuthSource.count' do\r
-      post :destroy, :id => auth_source.id\r
-    end\r
-\r
-    assert_redirected_to '/auth_sources'\r
-    assert AuthSource.find(auth_source.id)\r
-  end\r
-end\r
+# Redmine - project management software
+# Copyright (C) 2006-2011  Jean-Philippe Lang
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+
+require File.expand_path('../../test_helper', __FILE__)
+
+class AuthSourcesControllerTest < ActionController::TestCase
+  fixtures :users
+
+  def setup
+    @request.session[:user_id] = 1
+  end
+
+  def test_index
+    get :index
+
+    assert_response :success
+    assert_template 'index'
+    assert_not_nil assigns(:auth_sources)
+  end
+
+  def test_new
+    get :new
+
+    assert_response :success
+    assert_template 'new'
+    assert_kind_of AuthSource, assigns(:auth_source)
+    assert assigns(:auth_source).new_record?
+  end
+
+  def test_create
+    assert_difference 'AuthSource.count' do
+      post :create, :auth_source => {:name => 'Test'}
+    end
+
+    assert_redirected_to '/auth_sources'
+    auth_source = AuthSource.first(:order => 'id DESC')
+    assert_equal 'Test', auth_source.name
+  end
+
+  def test_edit
+    auth_source = AuthSource.generate!(:name => 'TestEdit')
+    get :edit, :id => auth_source.id
+
+    assert_response :success
+    assert_template 'edit'
+    assert_equal auth_source, assigns(:auth_source)
+  end
+
+  def test_update
+    auth_source = AuthSource.generate!(:name => 'TestEdit')
+    post :update, :id => auth_source.id, :auth_source => {:name => 'TestUpdate'}
+
+    assert_redirected_to '/auth_sources'
+    assert_equal 'TestUpdate', auth_source.reload.name
+  end
+
+  def test_destroy_without_users
+    auth_source = AuthSource.generate!(:name => 'TestEdit')
+    assert_difference 'AuthSource.count', -1 do
+      post :destroy, :id => auth_source.id
+    end
+
+    assert_redirected_to '/auth_sources'
+  end
+
+  def test_destroy_with_users
+    auth_source = AuthSource.generate!(:name => 'TestEdit')
+    User.generate!(:auth_source => auth_source)
+    assert_no_difference 'AuthSource.count' do
+      post :destroy, :id => auth_source.id
+    end
+
+    assert_redirected_to '/auth_sources'
+    assert AuthSource.find(auth_source.id)
+  end
+end