diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2019-12-22 10:12:33 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2019-12-22 10:12:33 +0100 |
| commit | aea4667fbc0ab33cd1981bc66d1cf1c9a9768023 (patch) | |
| tree | ed714471cd102b65c9a81418f9e458cd1e2c9bd8 /tests/unit/engines/test_dummy.py | |
| parent | d1154202bcd27a7cf3a1bed524ee6b24955df8af (diff) | |
| parent | 34ad3d6b34017523a9502f86b92c17fe389918eb (diff) | |
Merge branch 'master' of https://github.com/asciimoo/searx into makefile-doc
Diffstat (limited to 'tests/unit/engines/test_dummy.py')
| -rw-r--r-- | tests/unit/engines/test_dummy.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/unit/engines/test_dummy.py b/tests/unit/engines/test_dummy.py deleted file mode 100644 index 9399beaaf..000000000 --- a/tests/unit/engines/test_dummy.py +++ /dev/null @@ -1,26 +0,0 @@ -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), []) |