mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-04 03:27:06 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			458 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			458 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
 | 
						|
from mock import Mock
 | 
						|
 | 
						|
from searx.answerers import answerers
 | 
						|
from tests import SearxTestCase
 | 
						|
 | 
						|
 | 
						|
class AnswererTest(SearxTestCase):
 | 
						|
 | 
						|
    def test_unicode_input(self):
 | 
						|
        query = Mock()
 | 
						|
        unicode_payload = 'árvíztűrő tükörfúrógép'
 | 
						|
        for answerer in answerers:
 | 
						|
            query.query = '{} {}'.format(answerer.keywords[0], unicode_payload)
 | 
						|
            self.assertTrue(isinstance(answerer.answer(query), list))
 |