Current section

Files

Jump to
thousand_island test support exploding_handler.ex
Raw

test/support/exploding_handler.ex

defmodule ThousandIsland.Handlers.Exploding do
@moduledoc false
alias ThousandIsland.Handler
@behaviour Handler
@impl Handler
def handle_connection(_socket, _opts) do
raise "boom"
end
end