]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces from test/functional/news_controller_test.rb.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 30 Aug 2011 16:03:18 +0000 (16:03 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 30 Aug 2011 16:03:18 +0000 (16:03 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6830 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/news_controller_test.rb

index 56725013b0c97f94627b865e7f7392b8dcf4e712..a996c002df1516fcfafd529899674345284e56f8 100644 (file)
@@ -1,16 +1,16 @@
-# redMine - project management software
-# Copyright (C) 2006-2007  Jean-Philippe Lang
+# 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.
@@ -23,14 +23,14 @@ class NewsController; def rescue_action(e) raise e end; end
 
 class NewsControllerTest < ActionController::TestCase
   fixtures :projects, :users, :roles, :members, :member_roles, :enabled_modules, :news, :comments
-  
+
   def setup
     @controller = NewsController.new
     @request    = ActionController::TestRequest.new
     @response   = ActionController::TestResponse.new
     User.current = nil
   end
-  
+
   def test_index
     get :index
     assert_response :success
@@ -38,33 +38,33 @@ class NewsControllerTest < ActionController::TestCase
     assert_not_nil assigns(:newss)
     assert_nil assigns(:project)
   end
-  
+
   def test_index_with_project
     get :index, :project_id => 1
     assert_response :success
     assert_template 'index'
     assert_not_nil assigns(:newss)
   end
-  
+
   def test_show
     get :show, :id => 1
     assert_response :success
     assert_template 'show'
     assert_tag :tag => 'h2', :content => /eCookbook first release/
   end
-  
+
   def test_show_not_found
     get :show, :id => 999
     assert_response 404
   end
-  
+
   def test_get_new
     @request.session[:user_id] = 2
     get :new, :project_id => 1
     assert_response :success
     assert_template 'new'
   end
-  
+
   def test_post_create
     ActionMailer::Base.deliveries.clear
     Setting.notified_events << 'news_added'
@@ -74,7 +74,7 @@ class NewsControllerTest < ActionController::TestCase
                                             :description => 'This is the description',
                                             :summary => '' }
     assert_redirected_to '/projects/ecookbook/news'
-    
+
     news = News.find_by_title('NewsControllerTest')
     assert_not_nil news
     assert_equal 'This is the description', news.description
@@ -82,14 +82,14 @@ class NewsControllerTest < ActionController::TestCase
     assert_equal Project.find(1), news.project
     assert_equal 1, ActionMailer::Base.deliveries.size
   end
-  
+
   def test_get_edit
     @request.session[:user_id] = 2
     get :edit, :id => 1
     assert_response :success
     assert_template 'edit'
   end
-  
+
   def test_put_update
     @request.session[:user_id] = 2
     put :update, :id => 1, :news => { :description => 'Description changed by test_post_edit' }
@@ -110,7 +110,7 @@ class NewsControllerTest < ActionController::TestCase
     assert_tag :tag => 'div', :attributes => { :id => 'errorExplanation' },
                               :content => /1 error/
   end
-  
+
   def test_destroy
     @request.session[:user_id] = 2
     delete :destroy, :id => 1