aboutsummaryrefslogtreecommitdiffstats
path: root/test/rest_simple_resource.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/rest_simple_resource.erl')
-rw-r--r--test/rest_simple_resource.erl12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/rest_simple_resource.erl b/test/rest_simple_resource.erl
deleted file mode 100644
index 97145dd..0000000
--- a/test/rest_simple_resource.erl
+++ /dev/null
@@ -1,12 +0,0 @@
--module(rest_simple_resource).
--export([init/3, content_types_provided/2, get_text_plain/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}.
-