6b8d2050ccd8002703c9d28ab8cb356fd9ea3fd6
[anni] / test / pleroma / runtime_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 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