diff options
author | Sergey Suprunenko <suprunenko.s@gmail.com> | 2019-06-04 05:46:19 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2019-06-04 05:46:19 +0000 |
commit | 84cc131b59ad6c8910735c982757fee598de8757 (patch) | |
tree | eb701cc44aa13bf8ef13739c189108dd2b510608 /test/object | |
parent | 9d2563a3deb0904b8c7a480479179f10e7849c12 (diff) | |
download | pleroma-84cc131b59ad6c8910735c982757fee598de8757.tar.gz pleroma-84cc131b59ad6c8910735c982757fee598de8757.zip |
Add missing HTTP Request mocks
Diffstat (limited to 'test/object')
-rw-r--r-- | test/object/containment_test.exs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/object/containment_test.exs b/test/object/containment_test.exs index 452064093..a7a046203 100644 --- a/test/object/containment_test.exs +++ b/test/object/containment_test.exs @@ -6,6 +6,11 @@ defmodule Pleroma.Object.ContainmentTest do import Pleroma.Factory + setup_all do + Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end) + :ok + end + describe "general origin containment" do test "contain_origin_from_id() catches obvious spoofing attempts" do data = %{ |