Resolve follow activity from accept/reject without ID (#328)
[akkoma] / test / pleroma / runtime_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.RuntimeTest do
6 use ExUnit.Case, async: true
7
8 test "it loads custom runtime modules" do
9 assert {:module, Fixtures.Modules.RuntimeModule} ==
10 Code.ensure_compiled(Fixtures.Modules.RuntimeModule)
11 end
12 end