1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-06 00:32:34 -04:00
httparrot/test/cookies_handler_test.exs
2017-03-14 10:13:08 +08:00

22 lines
497 B
Elixir

defmodule HTTParrot.CookiesHandlerTest do
use ExUnit.Case
import :meck
import HTTParrot.CookiesHandler
setup do
new :cowboy_req
new JSX
on_exit fn -> unload() end
:ok
end
test "returns a JSON with all the cookies o/" do
expect(:cowboy_req, :cookies, 1, {[k1: :v1], :req2})
expect(JSX, :encode!, [{[[cookies: [k1: :v1]]], :json}])
assert get_json(:req1, :state) == {:json, :req2, :state}
assert validate :cowboy_req
assert validate JSX
end
end