1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

Remove useless cowboy_req#reply from onresponse hook

This commit is contained in:
Eduardo Gurgel 2013-12-27 21:43:06 -03:00
parent 1d5d03d6cc
commit e3a1d06470
2 changed files with 2 additions and 4 deletions

View file

@ -21,8 +21,8 @@ defmodule HTTParrot do
if JSEX.is_json? body do
body = JSEX.prettify!(body)
headers = ListDict.put(headers, "content-length", integer_to_list(String.length(body)))
{:ok, req} = :cowboy_req.reply(status, headers, body, req)
end
{:ok, req} = :cowboy_req.reply(status, headers, body, req)
req
end
end

View file

@ -18,8 +18,6 @@ defmodule HTTParrotTest do
end
test "'prettify_json' does nothing if body is not a JSON" do
expect(:cowboy_req, :reply, [{[:status, :headers, "<xml></xml>", :req1], {:ok, :req2}}])
assert prettify_json(:status, :headers, "<xml></xml>", :req1) == :req2
assert validate :cowboy_req
assert prettify_json(:status, :headers, "<xml></xml>", :req1) == :req1
end
end