diff options
Diffstat (limited to 'test/handlers')
-rw-r--r-- | test/handlers/resp_h.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/handlers/resp_h.erl b/test/handlers/resp_h.erl index cf21536..d43152e 100644 --- a/test/handlers/resp_h.erl +++ b/test/handlers/resp_h.erl @@ -379,6 +379,8 @@ do(<<"stream_trailers">>, Req0, Opts) -> end; do(<<"push">>, Req, Opts) -> case cowboy_req:binding(arg, Req) of + <<"read_body">> -> + cowboy_req:push("/echo/read_body", #{}, Req, #{}); <<"method">> -> cowboy_req:push("/static/style.css", #{<<"accept">> => <<"text/css">>}, Req, #{method => <<"HEAD">>}); |