summaryrefslogtreecommitdiffstats
path: root/test/functional/workflows_controller_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-16 16:33:27 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-16 16:33:27 +0000
commit7f1fb7ce81ddd02006ee9050f2a56b249f9dd474 (patch)
treef237586969dabe6746ae27e3121a826dea886862 /test/functional/workflows_controller_test.rb
parent5ac4b6670f40546b63282ef598936065961c2f6b (diff)
downloadredmine-7f1fb7ce81ddd02006ee9050f2a56b249f9dd474.tar.gz
redmine-7f1fb7ce81ddd02006ee9050f2a56b249f9dd474.zip
Don't show "Required" option for standard/custom fields that are always required.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10010 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/workflows_controller_test.rb')
-rw-r--r--test/functional/workflows_controller_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/workflows_controller_test.rb b/test/functional/workflows_controller_test.rb
index 32ac03b97..a7d67822d 100644
--- a/test/functional/workflows_controller_test.rb
+++ b/test/functional/workflows_controller_test.rb
@@ -191,7 +191,7 @@ class WorkflowsControllerTest < ActionController::TestCase
end
end
- def test_get_permissions_with_always_required_custom_field
+ def test_get_permissions_with_required_custom_field_should_not_show_required_option
cf = IssueCustomField.create!(:name => 'Foo', :field_format => 'string', :tracker_ids => [1], :is_required => true)
get :permissions, :role_id => 1, :tracker_id => 1
@@ -201,7 +201,7 @@ class WorkflowsControllerTest < ActionController::TestCase
# Custom field that is always required
# The default option is "(Required)"
assert_select 'select[name=?]', "permissions[#{cf.id}][3]" do
- assert_select 'option[value=]', :text => '(Required)'
+ assert_select 'option[value=]'
assert_select 'option[value=readonly]', :text => 'Read-only'
assert_select 'option[value=required]', 0
end