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

test/functional/files_controller_test.rb

index 7e18056974091eb355b4d72143819c4b0bb164cd..2e35863ba26418982988034f3e485cdcf5cabf6c 100644 (file)
@@ -2,7 +2,7 @@ require File.expand_path('../../test_helper', __FILE__)
 
 class FilesControllerTest < ActionController::TestCase
   fixtures :all
-  
+
   def setup
     @controller = FilesController.new
     @request    = ActionController::TestRequest.new
@@ -16,11 +16,11 @@ class FilesControllerTest < ActionController::TestCase
     assert_response :success
     assert_template 'index'
     assert_not_nil assigns(:containers)
-    
+
     # file attached to the project
     assert_tag :a, :content => 'project_file.zip',
                    :attributes => { :href => '/attachments/download/8/project_file.zip' }
-    
+
     # file attached to a project's version
     assert_tag :a, :content => 'version_file.zip',
                    :attributes => { :href => '/attachments/download/9/version_file.zip' }
@@ -31,7 +31,7 @@ class FilesControllerTest < ActionController::TestCase
     @request.session[:user_id] = 2
     Setting.notified_events = ['file_added']
     ActionMailer::Base.deliveries.clear
-    
+
     assert_difference 'Attachment.count' do
       post :create, :project_id => 1, :version_id => '',
            :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}}
@@ -47,12 +47,12 @@ class FilesControllerTest < ActionController::TestCase
     assert_equal "[eCookbook] New file", mail.subject
     assert mail.body.include?('testfile.txt')
   end
-  
+
   def test_create_version_file
     set_tmp_attachments_directory
     @request.session[:user_id] = 2
     Setting.notified_events = ['file_added']
-    
+
     assert_difference 'Attachment.count' do
       post :create, :project_id => 1, :version_id => '2',
            :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}}
@@ -63,5 +63,5 @@ class FilesControllerTest < ActionController::TestCase
     assert_equal 'testfile.txt', a.filename
     assert_equal Version.find(2), a.container
   end
-  
+
 end