aboutsummaryrefslogtreecommitdiffstats
path: root/test/rest_postonly_resource.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/rest_postonly_resource.erl')
-rw-r--r--test/rest_postonly_resource.erl14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/rest_postonly_resource.erl b/test/rest_postonly_resource.erl
deleted file mode 100644
index 4f725c9..0000000
--- a/test/rest_postonly_resource.erl
+++ /dev/null
@@ -1,14 +0,0 @@
--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}.