hurl/contrib/vim/test.hurl

30 lines
390 B
Plaintext
Raw Normal View History

2022-06-01 12:18:09 +03:00
# This is a comment
GET http://{{host}}
2022-06-01 12:18:09 +03:00
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": {{id}},
2022-06-01 12:18:09 +03:00
"message": "Hello"
}
POST http://example.com
```
Hello
```