mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-06 00:32:34 -04:00
Remove useless cowboy_req#reply from onresponse hook
This commit is contained in:
parent
1d5d03d6cc
commit
e3a1d06470
2 changed files with 2 additions and 4 deletions
|
@ -21,8 +21,8 @@ defmodule HTTParrot do
|
||||||
if JSEX.is_json? body do
|
if JSEX.is_json? body do
|
||||||
body = JSEX.prettify!(body)
|
body = JSEX.prettify!(body)
|
||||||
headers = ListDict.put(headers, "content-length", integer_to_list(String.length(body)))
|
headers = ListDict.put(headers, "content-length", integer_to_list(String.length(body)))
|
||||||
|
{:ok, req} = :cowboy_req.reply(status, headers, body, req)
|
||||||
end
|
end
|
||||||
{:ok, req} = :cowboy_req.reply(status, headers, body, req)
|
|
||||||
req
|
req
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -18,8 +18,6 @@ defmodule HTTParrotTest do
|
||||||
end
|
end
|
||||||
|
|
||||||
test "'prettify_json' does nothing if body is not a JSON" do
|
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) == :req1
|
||||||
assert prettify_json(:status, :headers, "<xml></xml>", :req1) == :req2
|
|
||||||
assert validate :cowboy_req
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue