diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-04 12:29:52 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-04 12:29:52 +0000 |
commit | 1b923819e8305bfe324c9c59e745f61c9c49ef06 (patch) | |
tree | 3acd758bc119e68b2c41dcfb9d6b35d163d4d64b /test/integration/api_test/issues_test.rb | |
parent | 7dbc3e4774f2c405a7f2784c93160066a6c88303 (diff) | |
download | redmine-1b923819e8305bfe324c9c59e745f61c9c49ef06.tar.gz redmine-1b923819e8305bfe324c9c59e745f61c9c49ef06.zip |
Removed some generate! calls.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9079 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/api_test/issues_test.rb')
-rw-r--r-- | test/integration/api_test/issues_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/api_test/issues_test.rb b/test/integration/api_test/issues_test.rb index 1c6e49b17..4445a000d 100644 --- a/test/integration/api_test/issues_test.rb +++ b/test/integration/api_test/issues_test.rb @@ -387,9 +387,9 @@ class ApiTest::IssuesTest < ActionController::IntegrationTest context "with subtasks" do setup do - @c1 = Issue.generate!(:status_id => 1, :subject => "child c1", :tracker_id => 1, :project_id => 1, :parent_issue_id => 1) - @c2 = Issue.generate!(:status_id => 1, :subject => "child c2", :tracker_id => 1, :project_id => 1, :parent_issue_id => 1) - @c3 = Issue.generate!(:status_id => 1, :subject => "child c3", :tracker_id => 1, :project_id => 1, :parent_issue_id => @c1.id) + @c1 = Issue.create!(:status_id => 1, :subject => "child c1", :tracker_id => 1, :project_id => 1, :author_id => 1, :parent_issue_id => 1) + @c2 = Issue.create!(:status_id => 1, :subject => "child c2", :tracker_id => 1, :project_id => 1, :author_id => 1, :parent_issue_id => 1) + @c3 = Issue.create!(:status_id => 1, :subject => "child c3", :tracker_id => 1, :project_id => 1, :author_id => 1, :parent_issue_id => @c1.id) end context ".xml" do |