diff options
Diffstat (limited to 'test/functional/activities_controller_test.rb')
-rw-r--r-- | test/functional/activities_controller_test.rb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/functional/activities_controller_test.rb b/test/functional/activities_controller_test.rb index fbbf9e601..0646df97f 100644 --- a/test/functional/activities_controller_test.rb +++ b/test/functional/activities_controller_test.rb @@ -45,6 +45,34 @@ class ActivitiesControllerTest < Redmine::ControllerTest assert_select 'dl dt.issue-edit a', :text => /(#{IssueStatus.find(2).name})/ end + def test_index_subproject_checkbox_should_check_descendants_visibility + @request.session[:user_id] = 2 + get( + :index, + :params => { + :id => 5, + } + ) + assert_response :success + + assert_select '#sidebar input#with_subprojects' + + project = Project.find(6) + project.is_public = false + project.save + + get( + :index, + :params => { + :id => 5, + } + ) + assert_response :success + + assert_select '#sidebar input#with_subprojects', :count => 0 + + end + def test_project_index_with_invalid_project_id_should_respond_404 get(:index, :params => {:id => 299}) assert_response 404 |