diff options
Diffstat (limited to 'test/handlers')
-rw-r--r-- | test/handlers/input_crash_h.erl | 10 |
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). |