2011-08-29 15:13:06 +04:00
|
|
|
# Redmine - project management software
|
2012-01-28 15:16:58 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2007-10-25 21:38:05 +04:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-08-29 15:13:06 +04:00
|
|
|
#
|
2007-10-25 21:38:05 +04:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-08-29 15:13:06 +04:00
|
|
|
#
|
2007-10-25 21:38:05 +04:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
2007-10-25 21:38:05 +04:00
|
|
|
|
2009-09-13 21:14:35 +04:00
|
|
|
class CustomValueTest < ActiveSupport::TestCase
|
2009-10-10 14:16:00 +04:00
|
|
|
fixtures :custom_fields, :custom_values, :users
|
2007-10-25 21:38:05 +04:00
|
|
|
|
2008-01-21 00:29:51 +03:00
|
|
|
def test_default_value
|
|
|
|
field = CustomField.find_by_default_value('Default string')
|
|
|
|
assert_not_nil field
|
2011-08-29 15:13:06 +04:00
|
|
|
|
2008-01-21 00:29:51 +03:00
|
|
|
v = CustomValue.new(:custom_field => field)
|
|
|
|
assert_equal 'Default string', v.value
|
|
|
|
|
|
|
|
v = CustomValue.new(:custom_field => field, :value => 'Not empty')
|
|
|
|
assert_equal 'Not empty', v.value
|
|
|
|
end
|
2011-08-29 15:13:06 +04:00
|
|
|
|
2009-10-10 14:16:00 +04:00
|
|
|
def test_sti_polymorphic_association
|
|
|
|
# Rails uses top level sti class for polymorphic association. See #3978.
|
|
|
|
assert !User.find(4).custom_values.empty?
|
|
|
|
assert !CustomValue.find(2).customized.nil?
|
|
|
|
end
|
2007-10-25 21:38:05 +04:00
|
|
|
end
|