call_hook(:controller_issues_new_after_save, { :params => params, :issue => @issue})
respond_to do |format|
format.html {
- redirect_to(params[:continue] ? { :action => 'new', :issue => {:tracker_id => @issue.tracker, :parent_issue_id => @issue.parent_issue_id}.reject {|k,v| v.nil?} } :
+ redirect_to(params[:continue] ? { :action => 'new', :project_id => @project, :issue => {:tracker_id => @issue.tracker, :parent_issue_id => @issue.parent_issue_id}.reject {|k,v| v.nil?} } :
{ :action => 'show', :id => @issue })
}
format.xml { render :action => 'show', :status => :created, :location => url_for(:controller => 'issues', :action => 'show', :id => @issue) }
:subject => 'This is first issue',
:priority_id => 5},
:continue => ''
- assert_redirected_to :controller => 'issues', :action => 'new', :issue => {:tracker_id => 3}
+ assert_redirected_to :controller => 'issues', :action => 'new', :project_id => 'ecookbook',
+ :issue => {:tracker_id => 3}
end
def test_post_create_without_custom_fields_param