From b474ad67de5aa50489fedc136358563ea5eba324 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 11 Apr 2015 07:54:20 +0000 Subject: "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 --- test/functional/workflows_controller_test.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/functional/workflows_controller_test.rb') diff --git a/test/functional/workflows_controller_test.rb b/test/functional/workflows_controller_test.rb index 85e0a1cf5..d59614aea 100644 --- a/test/functional/workflows_controller_test.rb +++ b/test/functional/workflows_controller_test.rb @@ -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 -- cgit v1.2.3