Merged r14241 (#19731).

git-svn-id: http://svn.redmine.org/redmine/branches/3.0-stable@14247 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2015-05-10 07:19:50 +00:00
parent 20f56ce0ae
commit 010945b3d8
2 changed files with 10 additions and 0 deletions

View File

@@ -1590,6 +1590,7 @@ class Issue < ActiveRecord::Base
tracker.disabled_core_fields.each do |attribute|
send "#{attribute}=", nil
end
self.done_ratio ||= 0
end
end
end

View File

@@ -70,6 +70,15 @@ class IssueTest < ActiveSupport::TestCase
assert_nil issue.estimated_hours
end
def test_create_with_all_fields_disabled
tracker = Tracker.find(1)
tracker.core_fields = []
tracker.save!
issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3, :subject => 'test_create_with_all_fields_disabled')
assert_save issue
end
def test_start_date_format_should_be_validated
set_language_if_valid 'en'
['2012', 'ABC', '2012-15-20'].each do |invalid_date|