mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 16:11:34 +03:00
32 lines
712 B
Plaintext
32 lines
712 B
Plaintext
error: Assert failure
|
|
--> tests_failed/assert_variable.hurl:8:0
|
|
|
|
|
8 | variable "toto" == "tata"
|
|
| actual: none
|
|
| expected: string <tata>
|
|
|
|
|
|
|
error: Undefined variable
|
|
--> tests_failed/assert_variable.hurl:9:24
|
|
|
|
|
9 | variable "status" == {{unknown}}
|
|
| ^^^^^^^ you must set the variable unknown
|
|
|
|
|
|
|
error: Assert failure
|
|
--> tests_failed/assert_variable.hurl:10:0
|
|
|
|
|
10 | variable "status" == {{type}}
|
|
| actual: int <200>
|
|
| expected: string <text/html; charset=utf-8>
|
|
|
|
|
|
|
error: Assert failure
|
|
--> tests_failed/assert_variable.hurl:11:0
|
|
|
|
|
11 | variable "status" == {{length}}
|
|
| actual: int <200>
|
|
| expected: string <0>
|
|
|
|
|
|