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:
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
|
||||
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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue