code layout clean up of 'should "allow not changing the issue's attributes"' at test/functional/issue_moves_controller_test.rb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7530 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-25 10:45:30 +00:00
parent f2fd28a76c
commit 7e182848e5
1 changed files with 4 additions and 1 deletions

View File

@ -108,7 +108,10 @@ class IssueMovesControllerTest < ActionController::TestCase
issue_before_move = Issue.find(1)
assert_difference 'Issue.count', 1 do
assert_no_difference 'Project.find(1).issues.count' do
post :create, :ids => [1], :new_project_id => 2, :copy_options => {:copy => '1'}, :new_tracker_id => '', :assigned_to_id => '', :status_id => '', :start_date => '', :due_date => ''
post :create, :ids => [1], :new_project_id => 2,
:copy_options => {:copy => '1'}, :new_tracker_id => '',
:assigned_to_id => '', :status_id => '',
:start_date => '', :due_date => ''
end
end
issue_after_move = Issue.first(:order => 'id desc', :conditions => {:project_id => 2})