Files
httprunner/hrp/testcase3.json
2024-01-19 15:06:20 +08:00

22 lines
449 B
JSON

{
"config": {
"name": "check shell exit code"
},
"teststeps": [
{
"name": "shell21",
"shell": {
"string": "ls -a; exit 3; exit 5",
"expect_exit_code": 3
}
},
{
"name": "shell22",
"shell": {
"string": "ls -a; exit 3 && exit 5",
"expect_exit_code": 3
}
}
]
}