aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2017-11-19 22:04:48 +0100
committerLoïc Hoguin <[email protected]>2017-11-19 22:04:48 +0100
commitf6539a9a68a6eb2c3a23906282e1b7582249f9be (patch)
tree04d47c07d9dcaf1bd45942dc256e62ac624b8b52 /test/handlers
parent8be803cb07738d87cf24fbb041b7c0137c232988 (diff)
downloadcowboy-f6539a9a68a6eb2c3a23906282e1b7582249f9be.tar.gz
cowboy-f6539a9a68a6eb2c3a23906282e1b7582249f9be.tar.bz2
cowboy-f6539a9a68a6eb2c3a23906282e1b7582249f9be.zip
Move tests from old http suite to rfc7230 suite
Diffstat (limited to 'test/handlers')
-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).