diff options
Diffstat (limited to 'test/support')
-rw-r--r-- | test/support/httpoison_mock.ex | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/support/httpoison_mock.ex b/test/support/httpoison_mock.ex index a8b1a60c0..a45eaf170 100644 --- a/test/support/httpoison_mock.ex +++ b/test/support/httpoison_mock.ex @@ -450,4 +450,8 @@ defmodule HTTPoisonMock do def post(url, body, headers) do {:error, "Not implemented the mock response for post #{inspect(url)}"} end + + def post(url, body, headers, options) do + {:error, "Not implemented the mock response for post #{inspect(url)}"} + end end |