"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:
Jean-Philippe Lang
2015-04-11 07:54:20 +00:00
parent 09eef4e75c
commit b474ad67de
2 changed files with 10 additions and 1 deletions

View File

@@ -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