code layout clean up test_create_as_copy_should_add_relation_with_copied_issue of IssuesControllerTest

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11888 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2013-05-19 04:02:50 +00:00
parent dbc7369d9d
commit 098a38bb3a
1 changed files with 2 additions and 2 deletions

View File

@ -2506,11 +2506,11 @@ class IssuesControllerTest < ActionController::TestCase
def test_create_as_copy_should_add_relation_with_copied_issue
@request.session[:user_id] = 2
assert_difference 'Issue.count' do
assert_difference 'IssueRelation.count' do
post :create, :project_id => 1, :copy_from => 1,
:issue => {:project_id => '1', :tracker_id => '3', :status_id => '1', :subject => 'Copy'}
:issue => {:project_id => '1', :tracker_id => '3',
:status_id => '1', :subject => 'Copy'}
end
end
copy = Issue.first(:order => 'id DESC')