aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/rest_expires_binary.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-06-10 08:38:54 +0200
committerLoïc Hoguin <[email protected]>2014-06-10 08:39:40 +0200
commitfc7e038fbab8ad1b5b11548f9d009c1b6ccd4be3 (patch)
tree4fc8ce506d07f8acf08ed545aaf0df18dbcd9d06 /test/http_SUITE_data/rest_expires_binary.erl
parent7a808e0aa3e764d923da74e18f76790936d19a35 (diff)
parent6ed25fd60b0cc502ae79baf20456bb2d2b02973e (diff)
downloadcowboy-fc7e038fbab8ad1b5b11548f9d009c1b6ccd4be3.tar.gz
cowboy-fc7e038fbab8ad1b5b11548f9d009c1b6ccd4be3.tar.bz2
cowboy-fc7e038fbab8ad1b5b11548f9d009c1b6ccd4be3.zip
Merge branch 'binary-expires' of git://github.com/NineFX/cowboy
Diffstat (limited to 'test/http_SUITE_data/rest_expires_binary.erl')
-rw-r--r--test/http_SUITE_data/rest_expires_binary.erl18
1 files changed, 18 insertions, 0 deletions
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}.