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:
Jean-Philippe Lang
2009-01-17 08:25:55 +00:00
parent d1a1e25bb8
commit 5ed2e78ae2
3 changed files with 5 additions and 8 deletions

View File

@@ -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')