aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-04-26 17:34:24 +0200
committerLoïc Hoguin <[email protected]>2013-04-26 17:34:24 +0200
commite54149555e1de41d356ee0ce7b5b0bb854170661 (patch)
tree605b14b5ecfa57b341e9d6282931656269e62914 /test/http_SUITE_data
parent46b2ea0aaa7fe891bfdf3f8a0c47357393e72cf6 (diff)
downloadcowboy-e54149555e1de41d356ee0ce7b5b0bb854170661.tar.gz
cowboy-e54149555e1de41d356ee0ce7b5b0bb854170661.tar.bz2
cowboy-e54149555e1de41d356ee0ce7b5b0bb854170661.zip
Move a test resource where it belongs
Diffstat (limited to 'test/http_SUITE_data')
-rw-r--r--test/http_SUITE_data/rest_postonly_resource.erl14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/http_SUITE_data/rest_postonly_resource.erl b/test/http_SUITE_data/rest_postonly_resource.erl
new file mode 100644
index 0000000..4f725c9
--- /dev/null
+++ b/test/http_SUITE_data/rest_postonly_resource.erl
@@ -0,0 +1,14 @@
+-module(rest_postonly_resource).
+-export([init/3, allowed_methods/2, content_types_accepted/2, from_text/2]).
+
+init(_Transport, _Req, _Opts) ->
+ {upgrade, protocol, cowboy_rest}.
+
+allowed_methods(Req, State) ->
+ {[<<"POST">>], Req, State}.
+
+content_types_accepted(Req, State) ->
+ {[{{<<"text">>, <<"plain">>, '*'}, from_text}], Req, State}.
+
+from_text(Req, State) ->
+ {true, Req, State}.