mirror of
https://github.com/redmine/redmine.git
synced 2026-05-06 11:17:34 +02:00
Code cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10987 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -297,6 +297,26 @@ class WorkflowsControllerTest < ActionController::TestCase
|
||||
assert_equal source_t3, status_transitions(:tracker_id => 3, :role_id => 3)
|
||||
end
|
||||
|
||||
def test_post_copy_with_incomplete_source_specification_should_fail
|
||||
assert_no_difference 'WorkflowRule.count' do
|
||||
post :copy,
|
||||
:source_tracker_id => '', :source_role_id => '2',
|
||||
:target_tracker_ids => ['2', '3'], :target_role_ids => ['1', '3']
|
||||
assert_response 200
|
||||
assert_select 'div.flash.error', :text => 'Please select a source tracker or role'
|
||||
end
|
||||
end
|
||||
|
||||
def test_post_copy_with_incomplete_target_specification_should_fail
|
||||
assert_no_difference 'WorkflowRule.count' do
|
||||
post :copy,
|
||||
:source_tracker_id => '1', :source_role_id => '2',
|
||||
:target_tracker_ids => ['2', '3']
|
||||
assert_response 200
|
||||
assert_select 'div.flash.error', :text => 'Please select target tracker(s) and role(s)'
|
||||
end
|
||||
end
|
||||
|
||||
# Returns an array of status transitions that can be compared
|
||||
def status_transitions(conditions)
|
||||
WorkflowTransition.
|
||||
|
||||
Reference in New Issue
Block a user