mirror of
				https://github.com/redmine/redmine.git
				synced 2025-11-03 20:06:24 +01:00 
			
		
		
		
	Additional test for TrackersController.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9441 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
		@@ -78,12 +78,13 @@ class TrackersControllerTest < ActionController::TestCase
 | 
			
		||||
    assert_equal Tracker.find(1).workflows.count, tracker.workflows.count
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def test_create_new_failure
 | 
			
		||||
  def test_create_with_failure
 | 
			
		||||
    assert_no_difference 'Tracker.count' do
 | 
			
		||||
      post :create, :tracker => { :name => '', :project_ids => ['1', '', ''], :custom_field_ids => ['1', '6', ''] }
 | 
			
		||||
    end
 | 
			
		||||
    assert_response :success
 | 
			
		||||
    assert_template 'new'
 | 
			
		||||
    assert_error_tag :content => /name can't be blank/i
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def test_edit
 | 
			
		||||
@@ -120,6 +121,13 @@ class TrackersControllerTest < ActionController::TestCase
 | 
			
		||||
    assert Tracker.find(1).project_ids.empty?
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def test_update_with_failure
 | 
			
		||||
    put :update, :id => 1, :tracker => { :name => '' }
 | 
			
		||||
    assert_response :success
 | 
			
		||||
    assert_template 'edit'
 | 
			
		||||
    assert_error_tag :content => /name can't be blank/i
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def test_move_lower
 | 
			
		||||
   tracker = Tracker.find_by_position(1)
 | 
			
		||||
   put :update, :id => 1, :tracker => { :move_to => 'lower' }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user