hurl/integration/tests_ok/encoding.hurl

15 lines
247 B
Plaintext
Raw Normal View History

2020-08-27 10:07:46 +03:00
GET http://localhost:8000/encoding/utf8
2022-11-11 16:25:00 +03:00
HTTP 200
2020-08-27 10:07:46 +03:00
Content-Type: text/html; charset=utf-8
[Asserts]
body == "caf\u{e9}"
2020-08-27 10:07:46 +03:00
GET http://localhost:8000/encoding/latin1
2022-11-11 16:25:00 +03:00
HTTP 200
2020-08-27 10:07:46 +03:00
Content-Type: text/html; charset=ISO-8859-1
[Asserts]
body == "caf\u{e9}"
2020-08-27 10:07:46 +03:00