summaryrefslogtreecommitdiff
path: root/test/runtime_test.exs
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-01-12 12:12:15 -0600
committerMark Felder <feld@FreeBSD.org>2020-01-12 12:12:15 -0600
commit2f5b8fbeb3830759c00675f99d893a92b1d3edb2 (patch)
treeee7ba90fa0b52e31cc7beeb9335deefbadd94e15 /test/runtime_test.exs
parent933dc120438d14502e4bc4c29db904114fb6e438 (diff)
parentecb8fe183c5a007e80d7b2b1bfc9ead89dc27cc2 (diff)
downloadpleroma-2f5b8fbeb3830759c00675f99d893a92b1d3edb2.tar.gz
pleroma-2f5b8fbeb3830759c00675f99d893a92b1d3edb2.zip
Merge branch 'develop' into issue/1354
Diffstat (limited to 'test/runtime_test.exs')
-rw-r--r--test/runtime_test.exs11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/runtime_test.exs b/test/runtime_test.exs
new file mode 100644
index 000000000..f7b6f23d4
--- /dev/null
+++ b/test/runtime_test.exs
@@ -0,0 +1,11 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
+defmodule Pleroma.RuntimeTest do
+ use ExUnit.Case, async: true
+
+ test "it loads custom runtime modules" do
+ assert Code.ensure_compiled?(RuntimeModule)
+ end
+end