mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
Merge 93ac1faab4 into e4f8f0483f
This commit is contained in:
commit
364e87a68f
5 changed files with 228 additions and 0 deletions
|
|
@ -199,6 +199,10 @@ class ViewsTestCase(SearxTestCase): # pylint: disable=missing-class-docstring,
|
|||
self.assertEqual(result.status_code, 200)
|
||||
self.assertIn(b'<h1>Search syntax</h1>', result.data)
|
||||
|
||||
result = self.app.get('/info/en/privacy-policy')
|
||||
self.assertEqual(result.status_code, 200)
|
||||
self.assertIn(b'<h1>Privacy Policy</h1>', result.data)
|
||||
|
||||
def test_health(self):
|
||||
result = self.app.get('/healthz')
|
||||
self.assertEqual(result.status_code, 200)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue