Browse Source

Code cleanup.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10987 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.3.0
Jean-Philippe Lang 11 years ago
parent
commit
24be0551cc

+ 0
- 1
app/controllers/queries_controller.rb View File

@@ -37,7 +37,6 @@ class QueriesController < ApplicationController
@queries = IssueQuery.visible.all(:limit => @limit, :offset => @offset, :order => "#{Query.table_name}.name")

respond_to do |format|
format.html { render :nothing => true }
format.api
end
end

+ 1
- 1
app/controllers/workflows_controller.rb View File

@@ -106,7 +106,7 @@ class WorkflowsController < ApplicationController
if request.post?
if params[:source_tracker_id].blank? || params[:source_role_id].blank? || (@source_tracker.nil? && @source_role.nil?)
flash.now[:error] = l(:error_workflow_copy_source)
elsif @target_trackers.nil? || @target_roles.nil?
elsif @target_trackers.blank? || @target_roles.blank?
flash.now[:error] = l(:error_workflow_copy_target)
else
WorkflowRule.copy(@source_tracker, @source_role, @target_trackers, @target_roles)

+ 6
- 0
test/functional/messages_controller_test.rb View File

@@ -81,6 +81,12 @@ class MessagesControllerTest < ActionController::TestCase
assert_template 'new'
end

def test_get_new_with_invalid_board
@request.session[:user_id] = 2
get :new, :board_id => 99
assert_response 404
end

def test_post_new
@request.session[:user_id] = 2
ActionMailer::Base.deliveries.clear

+ 6
- 0
test/functional/queries_controller_test.rb View File

@@ -24,6 +24,12 @@ class QueriesControllerTest < ActionController::TestCase
User.current = nil
end

def test_index
get :index
# HTML response not implemented
assert_response 406
end

def test_new_project_query
@request.session[:user_id] = 2
get :new, :project_id => 1

+ 20
- 0
test/functional/workflows_controller_test.rb View File

@@ -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.

Loading…
Cancel
Save