diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-10-13 10:51:57 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-10-13 10:51:57 +0000 |
commit | 9da555fcb77159e7198ed1852c7322390e79990a (patch) | |
tree | 50d0f225e00e601a6da99ab5920d235807ecea4a | |
parent | ed9f954c6cbeeb84ebf9f21d0613d5493647e019 (diff) | |
download | redmine-9da555fcb77159e7198ed1852c7322390e79990a.tar.gz redmine-9da555fcb77159e7198ed1852c7322390e79990a.zip |
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
-rw-r--r-- | test/unit/issue_test.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/unit/issue_test.rb b/test/unit/issue_test.rb index b863278d2..77a59c19a 100644 --- a/test/unit/issue_test.rb +++ b/test/unit/issue_test.rb @@ -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) |