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

test/functional/gantts_controller_test.rb

index 25113b06379f2f7e32ff7dc90b1d1794a8eb6908..5d8370cf201ff74d0473aa2dab530a59b6662c0b 100644 (file)
@@ -7,7 +7,7 @@ class GanttsControllerTest < ActionController::TestCase
     should "work" do
       i2 = Issue.find(2)
       i2.update_attribute(:due_date, 1.month.from_now)
-      
+
       get :show, :project_id => 1
       assert_response :success
       assert_template 'show.html.erb'
@@ -20,20 +20,20 @@ class GanttsControllerTest < ActionController::TestCase
       i = Issue.find(2)
       assert_select "div a.issue", /##{i.id}/
     end
-    
+
     should "work without issue due dates" do
       Issue.update_all("due_date = NULL")
-      
+
       get :show, :project_id => 1
       assert_response :success
       assert_template 'show.html.erb'
       assert_not_nil assigns(:gantt)
     end
-    
+
     should "work without issue and version due dates" do
       Issue.update_all("due_date = NULL")
       Version.update_all("effective_date = NULL")
-      
+
       get :show, :project_id => 1
       assert_response :success
       assert_template 'show.html.erb'
@@ -53,7 +53,7 @@ class GanttsControllerTest < ActionController::TestCase
       get :show
       assert_response :success
       assert_template 'show.html.erb'
-      
+
       assert_tag 'a', :content => /eCookbook/
       # Root private project
       assert_no_tag 'a', {:content => /OnlineStore/}
@@ -76,7 +76,7 @@ class GanttsControllerTest < ActionController::TestCase
       assert @response.body.starts_with?('%PDF')
       assert_not_nil assigns(:gantt)
     end
-    
+
     should "export to png" do
       get :show, :project_id => 1, :format => 'png'
       assert_response :success