summaryrefslogtreecommitdiffstats
path: root/test/functional
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2022-01-12 14:07:42 +0000
committerGo MAEDA <maeda@farend.jp>2022-01-12 14:07:42 +0000
commitc7b7eb365a16d6f4fc3a031ba1033763dc73694d (patch)
treeaac66ebe283cf436c349e85d7989eb3d04988ea2 /test/functional
parent5243bc5a6cfcb2e385a06b1ff4708e213d7dcd6d (diff)
downloadredmine-c7b7eb365a16d6f4fc3a031ba1033763dc73694d.tar.gz
redmine-c7b7eb365a16d6f4fc3a031ba1033763dc73694d.zip
Merged r21357 from trunk to 4.2-stable (#35090).
git-svn-id: http://svn.redmine.org/redmine/branches/4.2-stable@21360 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/issues_controller_test.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb
index 2a4fc6d5b..59d071b0a 100644
--- a/test/functional/issues_controller_test.rb
+++ b/test/functional/issues_controller_test.rb
@@ -2005,6 +2005,22 @@ class IssuesControllerTest < Redmine::ControllerTest
assert_select '#content a.new-issue[href="/issues/new"]', :text => 'New issue'
end
+ def test_index_should_show_setting_link_with_edit_project_permission
+ role = Role.find(1)
+ role.add_permission! :edit_project
+ @request.session[:user_id] = 2
+ get(:index, :params => {:project_id => 1})
+ assert_select '#content a.icon-settings[href="/projects/ecookbook/settings/issues"]', 1
+ end
+
+ def test_index_should_not_show_setting_link_without_edit_project_permission
+ role = Role.find(1)
+ role.remove_permission! :edit_project
+ @request.session[:user_id] = 2
+ get(:index, :params => {:project_id => 1})
+ assert_select '#content a.icon-settings[href="/projects/ecookbook/settings/issues"]', 0
+ end
+
def test_index_should_not_include_new_issue_tab_when_disabled
with_settings :new_item_menu_tab => '0' do
@request.session[:user_id] = 2