Paul J. Davis 5af1273fc2 Added more valid request tests.
Found and fixed a couple read and readline related bugs.
2010-06-03 16:11:18 -04:00

19 lines
332 B
Python

req1 = {
"method": "POST",
"uri": uri("/two_chunks_mult_zero_end"),
"version": (1, 1),
"headers": [
("TRANSFER-ENCODING", "chunked")
],
"body": "hello world"
}
req2 = {
"method": "GET",
"uri": uri("/second"),
"version": (1, 1),
"headers": [],
"body": ""
}
request = [req1, req2]