Use fixtures generator.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8295 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
aec1828fc7
commit
3ce595b806
@ -432,13 +432,9 @@ class IssueTest < ActiveSupport::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_should_not_close_duplicated_issue
|
def test_should_not_close_duplicated_issue
|
||||||
# Create 3 issues
|
project = Project.find(1)
|
||||||
issue1 = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
|
issue1 = Issue.generate_for_project!(project)
|
||||||
:status_id => 1, :priority => IssuePriority.all.first,
|
issue2 = Issue.generate_for_project!(project)
|
||||||
:subject => 'Duplicates test', :description => 'Duplicates test')
|
|
||||||
assert issue1.save
|
|
||||||
issue2 = issue1.clone
|
|
||||||
assert issue2.save
|
|
||||||
|
|
||||||
# 2 is a dupe of 1
|
# 2 is a dupe of 1
|
||||||
IssueRelation.create(:issue_from => issue2, :issue_to => issue1, :relation_type => IssueRelation::TYPE_DUPLICATES)
|
IssueRelation.create(:issue_from => issue2, :issue_to => issue1, :relation_type => IssueRelation::TYPE_DUPLICATES)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user