mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
15 lines
283 B
YAML
15 lines
283 B
YAML
config:
|
|
name: basic test with httpbin
|
|
base_url: https://httpbin.org/
|
|
verify: False
|
|
|
|
teststeps:
|
|
-
|
|
name: headers
|
|
request:
|
|
url: /headers
|
|
method: GET
|
|
validate:
|
|
- eq: ["status_code", 200]
|
|
- eq: [content.headers.Host, "httpbin.org"]
|