1url
2  http://example.com/index.html
3expected
4  abcdefghijklmnopqrstuvwxyz1234567890abcdef
5headers
6  Accept: */*
7  X-Custom: This is a custom header
8  x-lower: This is a lower-case custom header
9  authorization: fake auth data
10----------
11GET /index.html HTTP/1.1
12Host: example.com
13Accept: */*
14Authorization: fake auth data
15Connection: close
16User-Agent: HTTP-Tiny/VERSION
17X-Custom: This is a custom header
18x-lower: This is a lower-case custom header
19
20----------
21HTTP/1.1 200 OK
22Date: Thu, 03 Feb 1994 00:00:00 GMT
23Content-Type: text/plain
24Content-Length: 44
25
26abcdefghijklmnopqrstuvwxyz1234567890abcdef
27