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

test/functional/custom_fields_controller_test.rb

index 5e665ec136f94e0eb4e973b71faf84fe0a61ae63..57f0e9b8c429040e74b4eaa1b3b218c75e031c6c 100644 (file)
@@ -5,12 +5,12 @@
 # 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 CustomFieldsController; def rescue_action(e) raise e end; end
 
 class CustomFieldsControllerTest < ActionController::TestCase
   fixtures :custom_fields, :trackers, :users
-  
+
   def setup
     @controller = CustomFieldsController.new
     @request    = ActionController::TestRequest.new
     @response   = ActionController::TestResponse.new
     @request.session[:user_id] = 1
   end
-  
+
   def test_get_new_issue_custom_field
     get :new, :type => 'IssueCustomField'
     assert_response :success
@@ -50,12 +50,12 @@ class CustomFieldsControllerTest < ActionController::TestCase
         :content => 'Version'
       }
   end
-  
+
   def test_get_new_with_invalid_custom_field_class_should_redirect_to_list
     get :new, :type => 'UnknownCustomField'
     assert_redirected_to '/custom_fields'
   end
-  
+
   def test_post_new_list_custom_field
     assert_difference 'CustomField.count' do
       post :new, :type => "IssueCustomField",
@@ -71,7 +71,7 @@ class CustomFieldsControllerTest < ActionController::TestCase
                                    :is_required =>"0",
                                    :field_format => "list",
                                    :tracker_ids => ["1", ""]}
-    end        
+    end
     assert_redirected_to '/custom_fields?tab=IssueCustomField'
     field = IssueCustomField.find_by_name('test_post_new_list')
     assert_not_nil field