24 lines
507 B
YAML
24 lines
507 B
YAML
|
test_name: "[get_all] Test basic get all requests"
|
||
|
|
||
|
stages:
|
||
|
- name: "[get_all] get all schedules"
|
||
|
request:
|
||
|
url: "http://localhost:5000/api/v1/schedules/"
|
||
|
method: GET
|
||
|
response:
|
||
|
status_code: 200
|
||
|
|
||
|
- name: "[get_all] get all relays"
|
||
|
request:
|
||
|
url: "http://localhost:5000/api/v1/relays/"
|
||
|
method: GET
|
||
|
response:
|
||
|
status_code: 200
|
||
|
|
||
|
- name: "[get_all] get all controllers"
|
||
|
request:
|
||
|
url: "http://localhost:5000/api/v1/controllers/"
|
||
|
method: GET
|
||
|
response:
|
||
|
status_code: 200
|