yaml文件的命名
这个yaml文件的命名 需要遵守一些规范
- 需要以test为开头
- 结尾必须以.tavern.yaml
-
在yaml文件中使用关键字的介绍
test_name : 这个是给当前测试用例起一个名字
- stages: 在这个关键字内的内容就是请求内容
- name: 这个还是说明一下这个接口的作用
- request: 请求
- url: 请求的url
- method: 请求的方法(大写)
- data: 请求参数
- response: 响应断言
测试login接口
```python test_name: test_logins stages:- name: test_login_01
request:
url: http://127.0.0.1:5000/login/login
method: POST
data:
response: status_code: 200phone: 1234567
password: 123456
- name: test_login_01
request:
url: http://127.0.0.1:5000/login/login
method: POST
data:
```