mirror of
https://github.com/redmine/redmine.git
synced 2026-01-06 15:42:57 +01:00
"Required" and "Read-only" rules on "Fields Permissions" screen are not colored (#19580).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@14160 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -257,6 +257,15 @@ class WorkflowsControllerTest < ActionController::TestCase
|
||||
assert_equal IssueStatus.sorted.to_a, assigns(:statuses)
|
||||
end
|
||||
|
||||
def test_get_permissions_should_set_css_class
|
||||
WorkflowPermission.delete_all
|
||||
WorkflowPermission.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :field_name => 'assigned_to_id', :rule => 'required')
|
||||
|
||||
get :permissions, :role_id => 1, :tracker_id => 2
|
||||
assert_response :success
|
||||
assert_select 'td.required > select[name=?]', 'permissions[1][assigned_to_id]'
|
||||
end
|
||||
|
||||
def test_post_permissions
|
||||
WorkflowPermission.delete_all
|
||||
|
||||
|
||||
Reference in New Issue
Block a user