From b3bfcf068c20573ae06df42530f1a6d4dc6842c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 31 Oct 2018 22:41:59 +0100 Subject: Add a cowboy_rest test for malformed if-*-match headers --- test/handlers/rest_hello_h.erl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/handlers/rest_hello_h.erl (limited to 'test/handlers/rest_hello_h.erl') diff --git a/test/handlers/rest_hello_h.erl b/test/handlers/rest_hello_h.erl new file mode 100644 index 0000000..a40d6ac --- /dev/null +++ b/test/handlers/rest_hello_h.erl @@ -0,0 +1,16 @@ +%% This module sends a hello world response via a REST handler. + +-module(rest_hello_h). + +-export([init/2]). +-export([content_types_provided/2]). +-export([get_text_plain/2]). + +init(Req, Opts) -> + {cowboy_rest, Req, Opts}. + +content_types_provided(Req, State) -> + {[{{<<"text">>, <<"plain">>, []}, get_text_plain}], Req, State}. + +get_text_plain(Req, State) -> + {<<"This is REST!">>, Req, State}. -- cgit v1.2.3