aboutsummaryrefslogtreecommitdiff
path: root/test/support
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2019-08-14 21:44:50 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2019-08-14 21:44:50 +0300
commit8778c16dac1789eeb6dd51524573163216200b5d (patch)
tree1f375b267c5c79b97eb2e12c2c343709705815ba /test/support
parenta180c1360ecdbed76eccf3435bb2c831356746bc (diff)
parent4a5b0965a0d07d45bfc4687c80c752ec824457cc (diff)
downloadpleroma-8778c16dac1789eeb6dd51524573163216200b5d.tar.gz
Merge remote-tracking branch 'remotes/upstream/develop' into 1149-oban-job-queue
Diffstat (limited to 'test/support')
-rw-r--r--test/support/mrf_module_mock.ex13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/support/mrf_module_mock.ex b/test/support/mrf_module_mock.ex
new file mode 100644
index 000000000..12c7e22bc
--- /dev/null
+++ b/test/support/mrf_module_mock.ex
@@ -0,0 +1,13 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
+defmodule MRFModuleMock do
+ @behaviour Pleroma.Web.ActivityPub.MRF
+
+ @impl true
+ def filter(message), do: {:ok, message}
+
+ @impl true
+ def describe, do: {:ok, %{mrf_module_mock: "some config data"}}
+end