1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-11 01:51:32 +00:00

Fixed that issue validation fails if % done field is deactivated (#19731).

git-svn-id: http://svn.redmine.org/redmine/trunk@14241 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2015-05-09 09:48:11 +00:00
parent e95542908a
commit 6b11840b42
2 changed files with 10 additions and 0 deletions

View File

@ -1601,6 +1601,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|