mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-27 16:26:40 +03:00
30 lines
390 B
Plaintext
30 lines
390 B
Plaintext
|
# This is a comment
|
||
|
GET http://example.com
|
||
|
Header1: Value1
|
||
|
Header2: a\# # value with \#
|
||
|
Header3: GET
|
||
|
|
||
|
HTTP/1.1 200
|
||
|
[Asserts]
|
||
|
body not contains "#" # Other comment
|
||
|
body not contains "[Asserts]"
|
||
|
body not contains "200"
|
||
|
body not contains "GET"
|
||
|
body not contains "\"\#"
|
||
|
|
||
|
|
||
|
POST http://example.com
|
||
|
{
|
||
|
"id": 123,
|
||
|
"message": "Hello"
|
||
|
}
|
||
|
|
||
|
|
||
|
POST http://example.com
|
||
|
```
|
||
|
Hello
|
||
|
```
|
||
|
|
||
|
|
||
|
|