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:
parent
e95542908a
commit
6b11840b42
@ -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
|
||||
|
||||
@ -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|
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user