2019-12-06 10:05:09 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-12-06 10:05:09 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.RuntimeTest do
|
|
|
|
use ExUnit.Case, async: true
|
|
|
|
|
|
|
|
test "it loads custom runtime modules" do
|
2020-06-23 15:16:47 +00:00
|
|
|
assert {:module, Fixtures.Modules.RuntimeModule} ==
|
|
|
|
Code.ensure_compiled(Fixtures.Modules.RuntimeModule)
|
2019-12-06 10:05:09 +00:00
|
|
|
end
|
|
|
|
end
|