summaryrefslogtreecommitdiff
path: root/test/web/http_sigs
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2018-12-05 21:27:56 +0100
committerlain <lain@soykaf.club>2018-12-05 21:27:56 +0100
commit76d6b1c6ab2813b1fb8f4473e4d722cc32fb2fed (patch)
tree5308f2d4c169085dfbe22a95a86c5271e4285ace /test/web/http_sigs
parent3ea4476445a5e9b6ec1625d7caa537f79254e9d0 (diff)
parent5f0c2372bc8be3763b649b13ee142c273583329e (diff)
downloadpleroma-76d6b1c6ab2813b1fb8f4473e4d722cc32fb2fed.tar.gz
pleroma-76d6b1c6ab2813b1fb8f4473e4d722cc32fb2fed.zip
Merge remote-tracking branch 'origin' into follower-hiding
Diffstat (limited to 'test/web/http_sigs')
-rw-r--r--test/web/http_sigs/http_sig_test.exs6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/web/http_sigs/http_sig_test.exs b/test/web/http_sigs/http_sig_test.exs
index b2bf8d61b..2e189d583 100644
--- a/test/web/http_sigs/http_sig_test.exs
+++ b/test/web/http_sigs/http_sig_test.exs
@@ -4,6 +4,12 @@ defmodule Pleroma.Web.HTTPSignaturesTest do
use Pleroma.DataCase
alias Pleroma.Web.HTTPSignatures
import Pleroma.Factory
+ import Tesla.Mock
+
+ setup do
+ mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
+ :ok
+ end
@private_key hd(:public_key.pem_decode(File.read!("test/web/http_sigs/priv.key")))
|> :public_key.pem_entry_decode()