diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2020-01-15 16:49:45 +0400 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2020-01-15 16:49:45 +0400 |
commit | 3849053c6adbb4024e8fbe60e908cb141204f594 (patch) | |
tree | 173a6a4283e37e90209da9f347d2954cf7be5e1a /test/runtime_test.exs | |
parent | 34d85f8a5473fe0f85e8a8e9e8f58e40b3964ba4 (diff) | |
parent | 77412d5dd24a384f9be7d6bc6b1538415c584802 (diff) | |
download | pleroma-3849053c6adbb4024e8fbe60e908cb141204f594.tar.gz pleroma-3849053c6adbb4024e8fbe60e908cb141204f594.zip |
Merge branch 'develop' into notifications-from-account
Diffstat (limited to 'test/runtime_test.exs')
-rw-r--r-- | test/runtime_test.exs | 11 |
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 |