From 6599fc9a0ce1721271cc070f6d54a677d466c583 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 16 Apr 2020 14:44:23 +0200 Subject: Add tests for cookie_ignore_informational option --- test/handlers/cookie_informational_h.erl | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/handlers/cookie_informational_h.erl (limited to 'test/handlers') diff --git a/test/handlers/cookie_informational_h.erl b/test/handlers/cookie_informational_h.erl new file mode 100644 index 0000000..71e1b4a --- /dev/null +++ b/test/handlers/cookie_informational_h.erl @@ -0,0 +1,10 @@ +%% Feel free to use, reuse and abuse the code in this file. + +-module(cookie_informational_h). + +-export([init/2]). + +init(Req0, State) -> + cowboy_req:inform(103, #{<<"set-cookie">> => [<<"informational=1">>]}, Req0), + Req = cowboy_req:reply(204, #{<<"set-cookie">> => [<<"final=1">>]}, Req0), + {ok, Req, State}. -- cgit v1.2.3