1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-24 04:21:44 +00:00

Moved tracker_id param.

git-svn-id: http://svn.redmine.org/redmine/trunk@14772 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2015-10-30 19:45:32 +00:00
parent 21421917fc
commit 9a3b8e0b1e

View File

@ -37,13 +37,15 @@ class IssuesTest < Redmine::IntegrationTest
# create an issue
def test_add_issue
log_user('jsmith', 'jsmith')
get '/projects/ecookbook/issues/new', :tracker_id => '1'
get '/projects/ecookbook/issues/new'
assert_response :success
assert_template 'issues/new'
issue = new_record(Issue) do
post '/projects/ecookbook/issues', :tracker_id => "1",
:issue => { :start_date => "2006-12-26",
post '/projects/ecookbook/issues',
:issue => { :tracker_id => "1",
:start_date => "2006-12-26",
:priority_id => "4",
:subject => "new test issue",
:category_id => "",