</p>
<% end %>
-<% unless @custom_field.format_in? 'user', 'version' %>
-<p><%= @custom_field.field_format == 'bool' ? f.check_box(:default_value) : f.text_field(:default_value) %></p>
+<% case @custom_field.field_format %>
+<% when 'bool' %>
+ <p><%= f.check_box(:default_value) %></p>
+<% when 'text' %>
+ <p><%= f.text_area(:default_value, :rows => 8) %></p>
+<% when 'user', 'version' %>
+<% else %>
+ <p><%= f.text_field(:default_value) %></p>
<% end %>
<%= call_hook(:view_custom_fields_form_upper_box, :custom_field => @custom_field, :form => f) %>
table.fields_permissions td.required {background:#d88;}
textarea#custom_field_possible_values {width: 99%}
+textarea#custom_field_default_value {width: 99%}
+
input#content_comments {width: 99%}
p.pagination {margin-top:8px; font-size: 90%}
end
end
+ def test_default_value_should_be_an_input_for_string_custom_field
+ get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'string'}
+ assert_response :success
+ assert_select 'input[name=?]', 'custom_field[default_value]'
+ end
+
+ def test_default_value_should_be_a_textarea_for_text_custom_field
+ get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'text'}
+ assert_response :success
+ assert_select 'textarea[name=?]', 'custom_field[default_value]'
+ end
+
+ def test_default_value_should_be_a_checkbox_for_bool_custom_field
+ get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'bool'}
+ assert_response :success
+ assert_select 'input[name=?][type=checkbox]', 'custom_field[default_value]'
+ end
+
+ def test_default_value_should_not_be_present_for_user_custom_field
+ get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'user'}
+ assert_response :success
+ assert_select '[name=?]', 'custom_field[default_value]', 0
+ end
+
def test_new_js
get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'list'}, :format => 'js'
assert_response :success