We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c4b500 commit 099b392Copy full SHA for 099b392
tests/test_misc.py
@@ -4,6 +4,12 @@ def test_ping(client):
4
assert 'pong' in req.text
5
6
7
+def test_index_ping(client, index_name, create_index):
8
+ req = client.get(f'{index_name}/_ping')
9
+ assert req.status_code == 200, req.content
10
+ assert 'pong' in req.text
11
+
12
13
def test_metrics(client):
14
req = client.get(f'/_metrics')
15
assert req.status_code == 200, req.content
0 commit comments