You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
414 B
20 lines
414 B
test_name: "Test version endpoint" |
|
|
|
includes: |
|
- !include includes.yaml |
|
|
|
stages: |
|
- name: "Successful version test - valid authentication returns version info" |
|
request: |
|
url: "http://{server_address}/api/v1/info/version" |
|
method: GET |
|
headers: |
|
X-API-Key: "{api_key}" |
|
response: |
|
strict: False |
|
status_code: 200 |
|
json: |
|
name: !anystr |
|
version: !anystr |
|
|
|
|
|
|