mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-20 09:31:39 +03:00
13 lines
335 B
Plaintext
13 lines
335 B
Plaintext
GET http://localhost:8000/compressed/gzip
|
|
HTTP/1.0 200
|
|
Content-Length: 32
|
|
Content-Encoding: gzip
|
|
Content-Type: text/html; charset=utf-8
|
|
```Hello World!```
|
|
|
|
# -- COMPRESSED HAS NO EFFECT ON NON-COMPRESSED
|
|
GET http://localhost:8000/compressed/none
|
|
HTTP/1.0 200
|
|
Content-Length: 12
|
|
Content-Type: text/html; charset=utf-8
|
|
```Hello World!``` |