forked from Icycoide/searxng
[mod] remove buildout/makefile infrastructure
This commit is contained in:
parent
f9186344b3
commit
53979a7bf7
68 changed files with 87 additions and 558 deletions
26
tests/unit/engines/test_dummy.py
Normal file
26
tests/unit/engines/test_dummy.py
Normal file
|
@ -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), [])
|
Loading…
Add table
Add a link
Reference in a new issue