From 8c6adf73d9d3fa1ebb49d4b9bd71caab1815dcb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 24 Jul 2019 13:04:56 +0200 Subject: Add push_promise_start/push_promise_end events --- test/handlers/push_h.erl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/handlers/push_h.erl (limited to 'test/handlers') diff --git a/test/handlers/push_h.erl b/test/handlers/push_h.erl new file mode 100644 index 0000000..4184227 --- /dev/null +++ b/test/handlers/push_h.erl @@ -0,0 +1,12 @@ +%% Feel free to use, reuse and abuse the code in this file. + +-module(push_h). + +-export([init/2]). + +init(Req, State) -> + cowboy_req:push("/", #{<<"accept">> => <<"text/plain">>}, Req), + cowboy_req:push("/empty", #{<<"accept">> => <<"text/plain">>}, Req), + {ok, cowboy_req:reply(200, #{ + <<"content-type">> => <<"text/plain">> + }, <<"Hello world!">>, Req), State}. -- cgit v1.2.3