1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-06 00:32:34 -04:00
httparrot/test/headers_handler_test.exs
Eduardo Gurgel a049031f67 Rewrite tests to be less integrated
Now mocking JSEX
2013-12-30 23:37:18 -03:00

25 lines
522 B
Elixir

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