summaryrefslogtreecommitdiff
path: root/test/fixtures/modules
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2019-12-06 17:05:09 +0700
committerEgor Kislitsyn <egor@kislitsyn.com>2019-12-06 17:05:09 +0700
commita75d4a41e03979b4d1b9af5205e457d714ff76df (patch)
tree174458f007f4ba8e92f76aba82e49f557b332f2b /test/fixtures/modules
parente4292cbfad47e59c76461fa201bab3e5f791962b (diff)
downloadpleroma-a75d4a41e03979b4d1b9af5205e457d714ff76df.tar.gz
pleroma-a75d4a41e03979b4d1b9af5205e457d714ff76df.zip
Add a test for custom runtime modules
Diffstat (limited to 'test/fixtures/modules')
-rw-r--r--test/fixtures/modules/runtime_module.ex9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/fixtures/modules/runtime_module.ex b/test/fixtures/modules/runtime_module.ex
new file mode 100644
index 000000000..4711c3532
--- /dev/null
+++ b/test/fixtures/modules/runtime_module.ex
@@ -0,0 +1,9 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
+defmodule RuntimeModule do
+ @moduledoc """
+ This is a dummy module to test custom runtime modules.
+ """
+end