mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 06:15:59 +01:00
Fix broken project list layout for projects scheduled for deletion (#41217).
Patch by Liane Hampe (user:liane_hampe). git-svn-id: https://svn.redmine.org/redmine/trunk@23026 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -52,4 +52,22 @@ class ProjectsTest < Redmine::IntegrationTest
|
||||
assert_response :not_found
|
||||
end
|
||||
end
|
||||
|
||||
def test_list_layout_when_show_projects_scheduled_for_deletion
|
||||
project = Project.find(1)
|
||||
project.update_attribute :status, Project::STATUS_SCHEDULED_FOR_DELETION
|
||||
|
||||
log_user('admin', 'admin')
|
||||
|
||||
get '/admin/projects', :params => { :f => ['status'], :v => { 'status' => ['10'] } }
|
||||
assert_response :success
|
||||
|
||||
assert_select '#project-1' do
|
||||
assert_select 'td.checkbox.hide-when-print'
|
||||
assert_select 'td.name'
|
||||
assert_select 'td.identifier'
|
||||
assert_select 'td.short_description'
|
||||
assert_select 'td.buttons', text: ''
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user