summaryrefslogtreecommitdiff
path: root/test/support/mrf_module_mock.ex
diff options
context:
space:
mode:
authorAriadne Conill <ariadne@dereferenced.org>2019-08-13 21:29:15 +0000
committerAriadne Conill <ariadne@dereferenced.org>2019-08-13 21:29:15 +0000
commit7089400675ddc05cf29591a4109d8a96c173ad99 (patch)
tree54749796a9b9f9c3b569b51f3b640fe87e2c0637 /test/support/mrf_module_mock.ex
parent694bc43123a79293b02585bc457d08b0fbb1f103 (diff)
downloadpleroma-7089400675ddc05cf29591a4109d8a96c173ad99.tar.gz
pleroma-7089400675ddc05cf29591a4109d8a96c173ad99.zip
test: add mock MRF module for describe() testing
Diffstat (limited to 'test/support/mrf_module_mock.ex')
-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..e5ae21ad8
--- /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: %{"mrf_module_mock" => "some config data"}
+end