aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/default_h.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/handlers/default_h.erl')
-rw-r--r--test/handlers/default_h.erl8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/handlers/default_h.erl b/test/handlers/default_h.erl
new file mode 100644
index 0000000..b89c31b
--- /dev/null
+++ b/test/handlers/default_h.erl
@@ -0,0 +1,8 @@
+%% This module does not do anything.
+
+-module(default_h).
+
+-export([init/2]).
+
+init(Req, Opts) ->
+ {ok, Req, Opts}.