mirror of
				https://github.com/redmine/redmine.git
				synced 2025-10-30 18:06:30 +01:00 
			
		
		
		
	git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4509 e93f8b46-1217-0410-a6f0-8f06a7374b81
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require File.expand_path('../../test_helper', __FILE__)
 | |
| 
 | |
| class AutoCompletesControllerTest < ActionController::TestCase
 | |
|   fixtures :all
 | |
| 
 | |
|   def test_issues_should_not_be_case_sensitive
 | |
|     get :issues, :project_id => 'ecookbook', :q => 'ReCiPe'
 | |
|     assert_response :success
 | |
|     assert_not_nil assigns(:issues)
 | |
|     assert assigns(:issues).detect {|issue| issue.subject.match /recipe/}
 | |
|   end
 | |
|   
 | |
|   def test_issues_should_return_issue_with_given_id
 | |
|     get :issues, :project_id => 'subproject1', :q => '13'
 | |
|     assert_response :success
 | |
|     assert_not_nil assigns(:issues)
 | |
|     assert assigns(:issues).include?(Issue.find(13))
 | |
|   end
 | |
|   
 | |
|   def test_auto_complete_with_scope_all_and_cross_project_relations
 | |
|     Setting.cross_project_issue_relations = '1'
 | |
|     get :issues, :project_id => 'ecookbook', :q => '13', :scope => 'all'
 | |
|     assert_response :success
 | |
|     assert_not_nil assigns(:issues)
 | |
|     assert assigns(:issues).include?(Issue.find(13))
 | |
|   end
 | |
|      
 | |
|   def test_auto_complete_with_scope_all_without_cross_project_relations
 | |
|     Setting.cross_project_issue_relations = '0'
 | |
|     get :issues, :project_id => 'ecookbook', :q => '13', :scope => 'all'
 | |
|     assert_response :success
 | |
|     assert_equal [], assigns(:issues)
 | |
|   end
 | |
| end
 |