From 11215e46ecc5c3a4272893d4b06f71920ff126f5 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Sat, 2 Jan 2016 15:12:36 +0100 Subject: fix #659 --- test/test_protocol_http.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/test_protocol_http.py b/test/test_protocol_http.py index 8c843d73..1f0386b4 100644 --- a/test/test_protocol_http.py +++ b/test/test_protocol_http.py @@ -1,7 +1,6 @@ import socket from io import BytesIO from netlib.exceptions import HttpSyntaxException - from netlib.http import http1 from netlib.tcp import TCPClient from netlib.tutils import treq, raises @@ -82,3 +81,10 @@ class TestExpectHeader(tservers.HTTPProxTest): assert resp.status_code == 200 client.finish() + + +class TestHeadContentLength(tservers.HTTPProxTest): + def test_head_content_length(self): + p = self.pathoc() + resp = p.request("""head:'%s/p/200:h"Content-Length"="42"'""" % self.server.urlbase) + assert resp.headers["Content-Length"] == "42" \ No newline at end of file -- cgit v1.2.3