mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-30 00:37:52 +03:00
16 lines
369 B
Plaintext
16 lines
369 B
Plaintext
# This Hurl file begins with a BOM marker.
|
|
# You can check it with 'hexdump -c bom.hurl'
|
|
GET http://localhost:8000/utf8_bom
|
|
|
|
HTTP 200
|
|
`Hello World!`
|
|
|
|
# We send the content of this file and get back the same
|
|
# bytes from /mirror to test the presence of the BOM marker.
|
|
POST http://localhost:8000/mirror
|
|
file,bom.hurl;
|
|
|
|
HTTP 200
|
|
[Asserts]
|
|
bytes startsWith hex,efbbbf;
|