From d7761b52592e4ca8192cf16498c7aaa3c71526ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 19 Nov 2017 22:17:57 +0100 Subject: Remove another test from the old http suite --- test/handlers/resp_h.erl | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/handlers/resp_h.erl') diff --git a/test/handlers/resp_h.erl b/test/handlers/resp_h.erl index 19686ff..9dae612 100644 --- a/test/handlers/resp_h.erl +++ b/test/handlers/resp_h.erl @@ -195,6 +195,12 @@ do(<<"stream_body">>, Req0, Opts) -> cowboy_req:stream_body(<<"Hello world!">>, nofin, Req), cowboy_req:stream_body(<<>>, fin, Req), {ok, Req, Opts}; + <<"multiple">> -> + Req = cowboy_req:stream_reply(200, Req0), + cowboy_req:stream_body(<<"Hello ">>, nofin, Req), + cowboy_req:stream_body(<<"world">>, nofin, Req), + cowboy_req:stream_body(<<"!">>, fin, Req), + {ok, Req, Opts}; <<"nofin">> -> Req = cowboy_req:stream_reply(200, Req0), cowboy_req:stream_body(<<"Hello world!">>, nofin, Req), -- cgit v1.2.3