summaryrefslogtreecommitdiff
path: root/tests/unit/test_standalone_searx.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2020-12-16 13:41:32 +0100
committerAlexandre Flament <alex@al-f.net>2020-12-17 11:39:36 +0100
commit7ec8bc3ea76516e33318c67165161df5c1efdd36 (patch)
tree6c9dff310882db816cada8662ef5ed2b8a8158e8 /tests/unit/test_standalone_searx.py
parentc0cc01e936593ff3df828fa3bb834507c45cd7ac (diff)
[mod] split searx.search into different processors
see searx.search.processors.abstract.EngineProcessor First the method searx call the get_params method. If the return value is not None, then the searx call the method search.
Diffstat (limited to 'tests/unit/test_standalone_searx.py')
-rw-r--r--tests/unit/test_standalone_searx.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/test_standalone_searx.py b/tests/unit/test_standalone_searx.py
index 74e31369f..06d70246a 100644
--- a/tests/unit/test_standalone_searx.py
+++ b/tests/unit/test_standalone_searx.py
@@ -8,8 +8,7 @@ import sys
from mock import Mock, patch
from nose2.tools import params
-from searx.search import SearchQuery, EngineRef
-from searx.engines import initialize_engines
+from searx.search import SearchQuery, EngineRef, initialize
from searx.testing import SearxTestCase
@@ -30,7 +29,7 @@ class StandaloneSearx(SearxTestCase):
def setUpClass(cls):
engine_list = [{'engine': 'dummy', 'name': 'engine1', 'shortcut': 'e1'}]
- initialize_engines(engine_list)
+ initialize(engine_list)
def test_parse_argument_no_args(self):
"""Test parse argument without args."""