aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2017-11-19 22:17:57 +0100
committerLoïc Hoguin <[email protected]>2017-11-19 22:17:57 +0100
commitd7761b52592e4ca8192cf16498c7aaa3c71526ce (patch)
tree12f9547d4fa0ce2dc0e0b210e34ff9b0ffce51d6 /test/http_SUITE.erl
parentf6539a9a68a6eb2c3a23906282e1b7582249f9be (diff)
downloadcowboy-d7761b52592e4ca8192cf16498c7aaa3c71526ce.tar.gz
cowboy-d7761b52592e4ca8192cf16498c7aaa3c71526ce.tar.bz2
cowboy-d7761b52592e4ca8192cf16498c7aaa3c71526ce.zip
Remove another test from the old http suite
Diffstat (limited to 'test/http_SUITE.erl')
-rw-r--r--test/http_SUITE.erl8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl
index 2b5219d..c2e7912 100644
--- a/test/http_SUITE.erl
+++ b/test/http_SUITE.erl
@@ -211,14 +211,6 @@ check_status(Config) ->
{Ret, URL}
end || {Status, URL} <- Tests].
-chunked_response(Config) ->
- ConnPid = gun_open(Config),
- Ref = gun:get(ConnPid, "/chunked_response"),
- {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
- true = lists:keymember(<<"transfer-encoding">>, 1, Headers),
- {ok, <<"chunked_handler\r\nworks fine!">>} = gun:await_body(ConnPid, Ref),
- ok.
-
%% Check if sending requests whose size is around the MTU breaks something.
echo_body(Config) ->
MTU = ct_helper:get_loopback_mtu(),