Browse Source

Key/value-pair custom field type not available to all customizable contents (#27543).

Patch by Felix Schäfer (@felix) and Takenori TAKAKI (@takenory).


git-svn-id: https://svn.redmine.org/redmine/trunk@22834 e93f8b46-1217-0410-a6f0-8f06a7374b81
pull/149/merge
Go MAEDA 3 weeks ago
parent
commit
f4c7e08d0f

+ 2
- 0
lib/redmine/field_format.rb View File

@@ -829,6 +829,8 @@ module Redmine
end

class EnumerationFormat < RecordList
self.customized_class_names = nil

add 'enumeration'
self.form_partial = 'custom_fields/formats/enumeration'


+ 4
- 0
test/unit/lib/redmine/field_format/enumeration_format_test.rb View File

@@ -98,4 +98,8 @@ class Redmine::EnumerationFieldFormatTest < ActionView::TestCase
assert_equal [@foo.id], @field.value_from_keyword('foo, baz', nil)
assert_equal [], @field.value_from_keyword('baz', nil)
end

def test_customized_class_names_should_overrided_to_nil
assert_nil Redmine::FieldFormat::EnumerationFormat.customized_class_names
end
end

+ 6
- 0
test/unit/lib/redmine/field_format/field_format_test.rb View File

@@ -111,4 +111,10 @@ class Redmine::FieldFormatTest < ActionView::TestCase
assert_equal "foo bar", field.format.formatted_custom_value(self, custom_value, false)
assert_equal '<a href="http://foo/foo%20bar#anchor" class="external">foo bar</a>', field.format.formatted_custom_value(self, custom_value, true)
end

def test_as_select_should_return_enumeration_for_all_classes
%w(Issue TimeEntry Project Version Document User Group TimeEntryActivity IssuePriority DocumentCategory).each do |klass|
assert_include ['Key/value list', 'enumeration'], Redmine::FieldFormat.as_select(klass)
end
end
end

Loading…
Cancel
Save