summaryrefslogtreecommitdiffstats
path: root/test/functional/wiki_controller_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-10-18 10:07:49 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-10-18 10:07:49 +0000
commitccbe48d7791175497f516a341597a78736f79666 (patch)
treec2612a804cd7271608da186b2fa107fbbfe8e67f /test/functional/wiki_controller_test.rb
parent64e67f754d638603f338818286e54508f3061a94 (diff)
downloadredmine-ccbe48d7791175497f516a341597a78736f79666.tar.gz
redmine-ccbe48d7791175497f516a341597a78736f79666.zip
Adds 'Delete wiki pages attachments' permission.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1938 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/wiki_controller_test.rb')
-rw-r--r--test/functional/wiki_controller_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/functional/wiki_controller_test.rb b/test/functional/wiki_controller_test.rb
index b5325357c..053b86301 100644
--- a/test/functional/wiki_controller_test.rb
+++ b/test/functional/wiki_controller_test.rb
@@ -251,4 +251,11 @@ class WikiControllerTest < Test::Unit::TestCase
assert_response :success
assert_template 'edit'
end
+
+ def test_destroy_attachment
+ @request.session[:user_id] = 2
+ assert_difference 'Attachment.count', -1 do
+ post :destroy_attachment, :id => 1, :page => 'Page_with_an_inline_image', :attachment_id => 3
+ end
+ end
end