@@ -25,11 +25,11 class WorkflowTest < ActiveSupport::TestCase | |||
|
25 | 25 | Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 2) |
|
26 | 26 | Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 3, :assignee => true) |
|
27 | 27 | Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 4, :author => true) |
|
28 | ||
|
28 | ||
|
29 | 29 | assert_difference 'Workflow.count', 3 do |
|
30 | 30 | Workflow.copy(Tracker.find(2), Role.find(1), Tracker.find(3), Role.find(2)) |
|
31 | 31 | end |
|
32 | ||
|
32 | ||
|
33 | 33 | assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 2, :author => false, :assignee => false}) |
|
34 | 34 | assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 3, :author => false, :assignee => true}) |
|
35 | 35 | assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 4, :author => true, :assignee => false}) |
General Comments 0
You need to be logged in to leave comments.
Login now