remove trailing white-spaces from test/unit/workflow_test.rb.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6764 e93f8b46-1217-0410-a6f0-8f06a7374b81
Šī revīzija ir iekļauta:
Toshi MARUYAMA 2011-08-30 05:09:04 +00:00
vecāks 46fb8a8505
revīzija 8a749dca7c

Parādīt failu

@ -25,11 +25,11 @@ class WorkflowTest < ActiveSupport::TestCase
Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 2)
Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 3, :assignee => true)
Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 4, :author => true)
assert_difference 'Workflow.count', 3 do
Workflow.copy(Tracker.find(2), Role.find(1), Tracker.find(3), Role.find(2))
end
assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 2, :author => false, :assignee => false})
assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 3, :author => false, :assignee => true})
assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 4, :author => true, :assignee => false})