summaryrefslogtreecommitdiffstats
path: root/test/functional/files_controller_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-30 15:54:30 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-30 15:54:30 +0000
commita97470714c61fd765f5b5d91c1e93596567ce652 (patch)
tree0f75ecfc9183cc061c722af67c143deaa29d7008 /test/functional/files_controller_test.rb
parente7464f2b6298a5b58a14150c7f4d923649b35d98 (diff)
downloadredmine-a97470714c61fd765f5b5d91c1e93596567ce652.tar.gz
redmine-a97470714c61fd765f5b5d91c1e93596567ce652.zip
remove trailing white-spaces from test/functional/files_controller_test.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6818 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/files_controller_test.rb')
-rw-r--r--test/functional/files_controller_test.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/functional/files_controller_test.rb b/test/functional/files_controller_test.rb
index 7e1805697..2e35863ba 100644
--- a/test/functional/files_controller_test.rb
+++ b/test/functional/files_controller_test.rb
@@ -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