aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/input_crash_h.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/handlers/input_crash_h.erl')
-rw-r--r--test/handlers/input_crash_h.erl10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/handlers/input_crash_h.erl b/test/handlers/input_crash_h.erl
deleted file mode 100644
index 8cb7cbc..0000000
--- a/test/handlers/input_crash_h.erl
+++ /dev/null
@@ -1,10 +0,0 @@
-%% This module crashes on request input data
-%% depending on the given option.
-
--module(input_crash_h).
-
--export([init/2]).
-
-init(Req, content_length) ->
- ct_helper_error_h:ignore(erlang, binary_to_integer, 1),
- cowboy_req:parse_header(<<"content-length">>, Req).