aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/resp_h.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/handlers/resp_h.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/handlers/resp_h.erl')
-rw-r--r--test/handlers/resp_h.erl6
1 files changed, 6 insertions, 0 deletions
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),