mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-31 19:47:14 +00:00
Add test for r22895 (#40860).
git-svn-id: https://svn.redmine.org/redmine/trunk@22896 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
b5078e314a
commit
61eeefb7dc
@ -83,6 +83,16 @@ class IssueTest < ActiveSupport::TestCase
|
||||
assert_save issue
|
||||
end
|
||||
|
||||
def test_create_with_no_priority_defined
|
||||
IssuePriority.delete_all
|
||||
issue = Issue.new(
|
||||
project_id: 1, tracker_id: 1, author_id: 3, subject: 'test_create_with_no_priority_defined'
|
||||
)
|
||||
|
||||
assert_nothing_raised {assert_not issue.save}
|
||||
assert_include 'Priority cannot be blank', issue.errors.full_messages
|
||||
end
|
||||
|
||||
def test_default_priority_should_be_set_when_priority_field_is_disabled
|
||||
tracker = Tracker.find(1)
|
||||
tracker.core_fields = tracker.core_fields - ['priority_id']
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user