1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 00:02:41 -04:00
httparrot/test/status_code_handler_test.exs
2019-06-30 14:44:33 +12:00

19 lines
486 B
Elixir

defmodule HTTParrot.StatusCodeHandlerTest do
use ExUnit.Case
import :meck
import HTTParrot.StatusCodeHandler
setup do
new(:cowboy_req)
on_exit(fn -> unload() end)
:ok
end
test "reply with 'code' as status code" do
code = 123
expect(:cowboy_req, :binding, [{[:code, :req1], code}])
expect(:cowboy_req, :reply, [{[code, %{}, "", :req1], :req2}])
assert get_json(:req1, :state) == {:stop, :req2, :state}
assert validate(:cowboy_req)
end
end