summaryrefslogtreecommitdiff
path: root/test/runtime_test.exs
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2020-01-02 13:03:33 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2020-01-02 13:03:33 +0300
commitbadd0a96eaa9ff8fca7d25eccd05e8428e132699 (patch)
tree0c6a441f993935525bc4a706e98c8e36e11e7b10 /test/runtime_test.exs
parentead2d18826cf446fd7da542c55b6601e9bfc001c (diff)
parentee0c40831efde5054f587ae0e371fffcad1396b7 (diff)
downloadpleroma-badd0a96eaa9ff8fca7d25eccd05e8428e132699.tar.gz
pleroma-badd0a96eaa9ff8fca7d25eccd05e8428e132699.zip
Merge remote-tracking branch 'remotes/origin/develop' into oauth-scopes-tweaks-and-tests
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