mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
22 lines
449 B
JSON
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
|
|
}
|
|
}
|
|
]
|
|
}
|