[mod] remove buildout/makefile infrastructure

This commit is contained in:
Adam Tauber 2016-01-02 11:14:49 +01:00
parent f9186344b3
commit 53979a7bf7
68 changed files with 87 additions and 558 deletions

View 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), [])