mirror of
https://github.com/redmine/redmine.git
synced 2025-12-20 15:30:44 +01:00
Make use of tracker_ids association in issue custom field form.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2272 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -34,7 +34,6 @@ class CustomFieldsControllerTest < Test::Unit::TestCase
|
||||
def test_post_new_list_custom_field
|
||||
assert_difference 'CustomField.count' do
|
||||
post :new, :type => "IssueCustomField",
|
||||
:tracker_ids => ["1"],
|
||||
:custom_field => {:name => "test_post_new_list",
|
||||
:default_value => "",
|
||||
:min_length => "0",
|
||||
@@ -45,7 +44,8 @@ class CustomFieldsControllerTest < Test::Unit::TestCase
|
||||
:max_length => "0",
|
||||
:is_filter => "0",
|
||||
:is_required =>"0",
|
||||
:field_format => "list"}
|
||||
:field_format => "list",
|
||||
:tracker_ids => ["1", ""]}
|
||||
end
|
||||
assert_redirected_to '/custom_fields/list'
|
||||
field = IssueCustomField.find_by_name('test_post_new_list')
|
||||
|
||||
Reference in New Issue
Block a user