diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-20 11:38:01 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-20 11:38:01 +0000 |
commit | 671fce04dec6c27b8089bc7492cb67bbf4e6277c (patch) | |
tree | d6612c8ac79fd061f9e286590a8fdc1507bf52c5 /test | |
parent | a5de0fec9e97a7951a0bef465451d0a1d16bf7b4 (diff) | |
download | redmine-671fce04dec6c27b8089bc7492cb67bbf4e6277c.tar.gz redmine-671fce04dec6c27b8089bc7492cb67bbf4e6277c.zip |
Don't propose projects without trackers when editing an issue (#20463).
git-svn-id: http://svn.redmine.org/redmine/trunk@14613 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/issue_test.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/unit/issue_test.rb b/test/unit/issue_test.rb index 9a8afd66d..bed63b767 100644 --- a/test/unit/issue_test.rb +++ b/test/unit/issue_test.rb @@ -1331,6 +1331,12 @@ class IssueTest < ActiveSupport::TestCase assert_not_include Project.find(2), Issue.allowed_target_projects(User.find(2)) end + def test_allowed_target_projects_should_not_include_projects_without_trackers + project = Project.generate!(:tracker_ids => []) + assert project.trackers.empty? + assert_not_include project, Issue.allowed_target_projects(User.find(1)) + end + def test_move_to_another_project_with_same_category issue = Issue.find(1) issue.project = Project.find(2) |