From: Ariadne Conill Date: Tue, 13 Aug 2019 21:29:15 +0000 (+0000) Subject: test: add mock MRF module for describe() testing X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=7089400675ddc05cf29591a4109d8a96c173ad99;p=akkoma test: add mock MRF module for describe() testing --- 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 +# 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