summaryrefslogtreecommitdiff
path: root/test/runtime_test.exs
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2020-01-30 22:16:55 +0300
committerrinpatch <rinpatch@sdf.org>2020-01-30 22:16:55 +0300
commit5b62acf6e9a38f8d14a9fb37cc85e646fb0169e3 (patch)
tree6677ba80418ffd34a78cba75498f2c1ab48ba14c /test/runtime_test.exs
parent45180d4c6058f790475d8ff28018c912db105082 (diff)
parent946de2299cccebac6718e3a132397ff5c06c67ee (diff)
downloadpleroma-5b62acf6e9a38f8d14a9fb37cc85e646fb0169e3.tar.gz
pleroma-5b62acf6e9a38f8d14a9fb37cc85e646fb0169e3.zip
Merge branch 'develop' into fix/disable-rate-limiter-for-socket-localhost
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..6bde608ae
--- /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 {:module, RuntimeModule} == Code.ensure_compiled(RuntimeModule)
+ end
+end