summaryrefslogtreecommitdiff
path: root/tests/unit/engines/test_dummy.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/engines/test_dummy.py')
-rw-r--r--tests/unit/engines/test_dummy.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/unit/engines/test_dummy.py b/tests/unit/engines/test_dummy.py
new file mode 100644
index 0000000..9399bea
--- /dev/null
+++ b/tests/unit/engines/test_dummy.py
@@ -0,0 +1,26 @@
+from searx.engines import dummy
+from searx.testing import SearxTestCase
+
+
+class TestDummyEngine(SearxTestCase):
+
+ def test_request(self):
+ test_params = [
+ [1, 2, 3],
+ ['a'],
+ [],
+ 1
+ ]
+ for params in test_params:
+ self.assertEqual(dummy.request(None, params), params)
+
+ def test_response(self):
+ responses = [
+ None,
+ [],
+ True,
+ dict(),
+ tuple()
+ ]
+ for response in responses:
+ self.assertEqual(dummy.response(response), [])