mirror of
https://github.com/redmine/redmine.git
synced 2025-11-01 10:56:17 +01:00
Fixed "Layout/IndentationWidth: Use 2 (not 4) spaces for indentation." introduced by r21141 (#35634).
git-svn-id: http://svn.redmine.org/redmine/trunk@21152 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -3158,16 +3158,16 @@ class IssuesControllerTest < Redmine::ControllerTest
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_show_should_not_display_edit_attachment_icon_for_user_without_edit_issue_permission_on_tracker
|
def test_show_should_not_display_edit_attachment_icon_for_user_without_edit_issue_permission_on_tracker
|
||||||
role = Role.find(2)
|
role = Role.find(2)
|
||||||
role.set_permission_trackers 'edit_issues', [2, 3]
|
role.set_permission_trackers 'edit_issues', [2, 3]
|
||||||
role.save!
|
role.save!
|
||||||
|
|
||||||
@request.session[:user_id] = 2
|
@request.session[:user_id] = 2
|
||||||
|
|
||||||
get :show, params: {id: 4}
|
get :show, params: {id: 4}
|
||||||
|
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_select 'div.attachments .icon-edit', 0
|
assert_select 'div.attachments .icon-edit', 0
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_show_should_not_display_delete_attachment_icon_for_user_without_edit_issue_permission_on_tracker
|
def test_show_should_not_display_delete_attachment_icon_for_user_without_edit_issue_permission_on_tracker
|
||||||
|
|||||||
Reference in New Issue
Block a user