Move VersionsController#download to AttachmentsController.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1685 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2008-07-22 17:20:02 +00:00
parent aaca2c50e5
commit 8a7bfc72b2
6 changed files with 28 additions and 24 deletions

View File

@@ -56,4 +56,9 @@ class AttachmentsControllerTest < Test::Unit::TestCase
assert_response :success
assert_equal 'application/x-ruby', @response.content_type
end
def test_anonymous_on_private_private
get :download, :id => 7
assert_redirected_to 'account/login'
end
end