Add description for issue statuses and display them in issue new/edit form (#2568).

Patch by Takenori TAKAKI.


git-svn-id: https://svn.redmine.org/redmine/trunk@22288 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2023-08-31 13:21:34 +00:00
parent 2415c9f5d7
commit fe9ef2fc27
12 changed files with 78 additions and 7 deletions

View File

@@ -29,6 +29,8 @@ class Redmine::ApiTest::IssueStatusesTest < Redmine::ApiTest::Base
assert_equal 'application/xml', @response.media_type
assert_select 'issue_statuses[type=array] issue_status id', :text => '2' do
assert_select '~ name', :text => 'Assigned'
assert_select '~ is_closed', :text => 'false'
assert_select '~ description', :text => 'Description for Assigned issue status'
end
end
end