mirror of
https://github.com/redmine/redmine.git
synced 2026-05-07 15:36:48 +02:00
Make sure that custom field format cannot be changed.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10624 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -57,6 +57,12 @@ class CustomFieldTest < ActiveSupport::TestCase
|
||||
assert field.valid?
|
||||
end
|
||||
|
||||
def test_should_not_change_field_format_of_existing_custom_field
|
||||
field = CustomField.find(1)
|
||||
field.field_format = 'int'
|
||||
assert_equal 'list', field.field_format
|
||||
end
|
||||
|
||||
def test_possible_values_should_accept_an_array
|
||||
field = CustomField.new
|
||||
field.possible_values = ["One value", ""]
|
||||
|
||||
Reference in New Issue
Block a user