1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-06 00:32:34 -04:00
httparrot/test/base64_handler_test.exs
2014-01-22 16:00:59 -03:00

21 lines
430 B
Elixir

defmodule HTTParrot.Base64HandlerTest do
use ExUnit.Case
import :meck
import HTTParrot.Base64Handler
setup do
new :cowboy_req
end
teardown do
unload :cowboy_req
end
test "returns decoded base64 urlsafe" do
expect(:cowboy_req, :binding, [{[:value, :req1], {"LytiYXNlNjQrLw", :req2}}])
assert get_binary(:req1, :state) == { "/+base64+/", :req2, :state}
assert validate :cowboy_req
end
end