use with_settings at IssuesControllerTest#test_index_with_project_and_subprojects

git-svn-id: http://svn.redmine.org/redmine/trunk@20204 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-10-26 13:36:20 +00:00
parent 9957195e52
commit 9bb9287970

View File

@@ -109,13 +109,14 @@ class IssuesControllerTest < Redmine::ControllerTest
end
def test_index_with_project_and_subprojects
Setting.display_subprojects_issues = 1
get(:index, :params => {:project_id => 1})
assert_response :success
with_settings :display_subprojects_issues => '1' do
get(:index, :params => {:project_id => 1})
assert_response :success
assert_select 'a[href="/issues/1"]', :text => /Cannot print recipes/
assert_select 'a[href="/issues/5"]', :text => /Subproject issue/
assert_select 'a[href="/issues/6"]', 0
assert_select 'a[href="/issues/1"]', :text => /Cannot print recipes/
assert_select 'a[href="/issues/5"]', :text => /Subproject issue/
assert_select 'a[href="/issues/6"]', 0
end
end
def test_index_with_project_and_subprojects_should_show_private_subprojects_with_permission