1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 16:22:32 -04:00
httparrot/test/headers_handler_test.exs
2019-06-28 09:34:36 +03:00

22 lines
494 B
Elixir

defmodule HTTParrot.HeadersHandlerTest do
use ExUnit.Case
import :meck
import HTTParrot.HeadersHandler
setup do
new(:cowboy_req)
new(JSX)
on_exit(fn -> unload() end)
:ok
end
test "returns prettified json with headers list" do
expect(:cowboy_req, :headers, 1, :headers)
expect(JSX, :encode!, [{[[headers: :headers]], :json}])
assert get_json(:req1, :state) == {:json, :req1, :state}
assert validate(:cowboy_req)
assert validate(JSX)
end
end