From 6ed25fd60b0cc502ae79baf20456bb2d2b02973e Mon Sep 17 00:00:00 2001 From: Drew Varner Date: Fri, 6 Jun 2014 02:37:24 -0400 Subject: Allow users to pass a raw binary() as the expires header. --- test/http_SUITE_data/rest_expires_binary.erl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/http_SUITE_data/rest_expires_binary.erl (limited to 'test/http_SUITE_data') diff --git a/test/http_SUITE_data/rest_expires_binary.erl b/test/http_SUITE_data/rest_expires_binary.erl new file mode 100644 index 0000000..4cbd001 --- /dev/null +++ b/test/http_SUITE_data/rest_expires_binary.erl @@ -0,0 +1,18 @@ +-module(rest_expires_binary). + +-export([init/3]). +-export([content_types_provided/2]). +-export([get_text_plain/2]). +-export([expires/2]). + +init(_Transport, _Req, _Opts) -> + {upgrade, protocol, cowboy_rest}. + +content_types_provided(Req, State) -> + {[{{<<"text">>, <<"plain">>, []}, get_text_plain}], Req, State}. + +get_text_plain(Req, State) -> + {<<"This is REST!">>, Req, State}. + +expires(Req, State) -> + {<<"0">>, Req, State}. -- cgit v1.2.3