code layout clean up test_editable_custom_field_values_should_return_non_readonly_custom_values of unit issue test
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10641 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
ed9f954c6c
commit
9da555fcb7
|
@ -543,11 +543,13 @@ class IssueTest < ActiveSupport::TestCase
|
|||
end
|
||||
|
||||
def test_editable_custom_field_values_should_return_non_readonly_custom_values
|
||||
cf1 = IssueCustomField.create!(:name => 'Writable field', :field_format => 'string', :is_for_all => true, :tracker_ids => [1, 2])
|
||||
cf2 = IssueCustomField.create!(:name => 'Readonly field', :field_format => 'string', :is_for_all => true, :tracker_ids => [1, 2])
|
||||
|
||||
cf1 = IssueCustomField.create!(:name => 'Writable field', :field_format => 'string',
|
||||
:is_for_all => true, :tracker_ids => [1, 2])
|
||||
cf2 = IssueCustomField.create!(:name => 'Readonly field', :field_format => 'string',
|
||||
:is_for_all => true, :tracker_ids => [1, 2])
|
||||
WorkflowPermission.delete_all
|
||||
WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1, :role_id => 1, :field_name => cf2.id.to_s, :rule => 'readonly')
|
||||
WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1, :role_id => 1,
|
||||
:field_name => cf2.id.to_s, :rule => 'readonly')
|
||||
user = User.find(2)
|
||||
|
||||
issue = Issue.new(:project_id => 1, :tracker_id => 1)
|
||||
|
|
Loading…
Reference in New Issue