summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-10-12 08:56:09 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-10-12 08:56:09 +0000
commit51818cbbb6bc36f773eb9e225e070d0492b0ac36 (patch)
treebb9e995f91512e9b8401f2e28508674abc6ed073 /test/unit
parent8bde60dc56e47316aa6dbd22ab75a305c1dfc9ae (diff)
downloadredmine-51818cbbb6bc36f773eb9e225e070d0492b0ac36.tar.gz
redmine-51818cbbb6bc36f773eb9e225e070d0492b0ac36.zip
Makes Issue.generate_with_descendants! helper accept attributes only.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10612 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/issue_test.rb6
-rw-r--r--test/unit/project_test.rb2
2 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/issue_test.rb b/test/unit/issue_test.rb
index 329d64361..0747f5c84 100644
--- a/test/unit/issue_test.rb
+++ b/test/unit/issue_test.rb
@@ -650,7 +650,7 @@ class IssueTest < ActiveSupport::TestCase
end
def test_copy_should_copy_subtasks
- issue = Issue.generate_with_descendants!(Project.find(1), :subject => 'Parent')
+ issue = Issue.generate_with_descendants!
copy = issue.reload.copy
copy.author = User.find(7)
@@ -665,7 +665,7 @@ class IssueTest < ActiveSupport::TestCase
end
def test_copy_should_copy_subtasks_to_target_project
- issue = Issue.generate_with_descendants!(Project.find(1), :subject => 'Parent')
+ issue = Issue.generate_with_descendants!
copy = issue.copy(:project_id => 3)
assert_difference 'Issue.count', 1+issue.descendants.count do
@@ -675,7 +675,7 @@ class IssueTest < ActiveSupport::TestCase
end
def test_copy_should_not_copy_subtasks_twice_when_saving_twice
- issue = Issue.generate_with_descendants!(Project.find(1), :subject => 'Parent')
+ issue = Issue.generate_with_descendants!
copy = issue.reload.copy
assert_difference 'Issue.count', 1+issue.descendants.count do
diff --git a/test/unit/project_test.rb b/test/unit/project_test.rb
index 8338a1f53..8960f24af 100644
--- a/test/unit/project_test.rb
+++ b/test/unit/project_test.rb
@@ -1054,7 +1054,7 @@ class ProjectTest < ActiveSupport::TestCase
def test_copy_should_copy_subtasks
source = Project.generate!(:tracker_ids => [1])
- issue = Issue.generate_with_descendants!(source, :subject => 'Parent')
+ issue = Issue.generate_with_descendants!(:project => source)
project = Project.new(:name => 'Copy', :identifier => 'copy', :tracker_ids => [1])
assert_difference 'Project.count' do