| 
									
										
										
										
											2011-08-29 11:13:06 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2014-01-29 22:45:39 +00:00
										 |  |  | # Copyright (C) 2006-2014  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-10-25 17:38:05 +00: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 11:13:06 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-10-25 17:38:05 +00: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 11:13:06 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-10-25 17:38:05 +00: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-12 23:24:34 +00:00
										 |  |  | require File.expand_path('../../test_helper', __FILE__) | 
					
						
							| 
									
										
										
										
											2007-10-25 17:38:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  | class CustomValueTest < ActiveSupport::TestCase | 
					
						
							| 
									
										
										
										
											2009-10-10 10:16:00 +00:00
										 |  |  |   fixtures :custom_fields, :custom_values, :users | 
					
						
							| 
									
										
										
										
											2007-10-25 17:38:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 21:29:51 +00:00
										 |  |  |   def test_default_value | 
					
						
							|  |  |  |     field = CustomField.find_by_default_value('Default string') | 
					
						
							|  |  |  |     assert_not_nil field | 
					
						
							| 
									
										
										
										
											2011-08-29 11:13:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 21:29:51 +00: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 11:13:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-10 10:16:00 +00: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 17:38:05 +00:00
										 |  |  | end |