diff options
author | asciimoo <asciimoo@gmail.com> | 2014-02-07 00:35:15 +0100 |
---|---|---|
committer | asciimoo <asciimoo@gmail.com> | 2014-02-07 00:35:15 +0100 |
commit | c0013edcdd998b49bdfce0b68ec38a0024347fd3 (patch) | |
tree | bfd43430068f93959bc17a4e5dd0dc8455537570 /searx/tests/test_webapp.py | |
parent | b8d836e445484b6db4a2fd4c9102e0518889f220 (diff) | |
download | searxng-c0013edcdd998b49bdfce0b68ec38a0024347fd3.tar.gz searxng-c0013edcdd998b49bdfce0b68ec38a0024347fd3.zip |
[enh] engine customisation init
Diffstat (limited to 'searx/tests/test_webapp.py')
-rw-r--r-- | searx/tests/test_webapp.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/searx/tests/test_webapp.py b/searx/tests/test_webapp.py index 4e2c820d9..284dc3c75 100644 --- a/searx/tests/test_webapp.py +++ b/searx/tests/test_webapp.py @@ -124,11 +124,6 @@ class ViewsTestCase(SearxTestCase): self.assertEqual(result.status_code, 200) self.assertIn('<h1>About <a href="/">searx</a></h1>', result.data) - def test_engines(self): - result = self.app.get('/engines') - self.assertEqual(result.status_code, 200) - self.assertIn('<h2>Currently used search engines</h2>', result.data) - def test_preferences(self): result = self.app.get('/preferences') self.assertEqual(result.status_code, 200) |