From e54149555e1de41d356ee0ce7b5b0bb854170661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 26 Apr 2013 17:34:24 +0200 Subject: Move a test resource where it belongs --- test/http_SUITE_data/rest_postonly_resource.erl | 14 ++++++++++++++ test/rest_postonly_resource.erl | 14 -------------- 2 files changed, 14 insertions(+), 14 deletions(-) create mode 100644 test/http_SUITE_data/rest_postonly_resource.erl delete mode 100644 test/rest_postonly_resource.erl (limited to 'test') 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}. 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}. -- cgit v1.2.3