aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/cookie_informational_h.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/handlers/cookie_informational_h.erl')
-rw-r--r--test/handlers/cookie_informational_h.erl10
1 files changed, 10 insertions, 0 deletions
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}.