diff options
author | Hadrien <ketsapiwiq@protonmail.com> | 2020-12-26 13:59:27 +0000 |
---|---|---|
committer | Pierre de Lacroix <pierre@pdelacroix.com> | 2020-12-26 13:59:27 +0000 |
commit | 4040c1400ace8ce5abc9b3c28d1cd67bd8f137d1 (patch) | |
tree | d3c24da6782f80c4043ba5f59241107f73850b1e /test | |
parent | allow runtime configuration of homserver token (diff) |
Improve CI
Diffstat (limited to 'test')
-rw-r--r-- | test/matrix_app_service/client.ex | 2 | ||||
-rw-r--r-- | test/support/test_room_adapter.ex | 1 | ||||
-rw-r--r-- | test/support/test_transaction_adapter.ex | 3 | ||||
-rw-r--r-- | test/support/test_user_adapter.ex | 1 |
4 files changed, 6 insertions, 1 deletions
diff --git a/test/matrix_app_service/client.ex b/test/matrix_app_service/client.ex index 37d2225..546305a 100644 --- a/test/matrix_app_service/client.ex +++ b/test/matrix_app_service/client.ex @@ -1,4 +1,6 @@ defmodule MatrixAppService.ClientTest do + @moduledoc false + use ExUnit.Case use Plug.Test end diff --git a/test/support/test_room_adapter.ex b/test/support/test_room_adapter.ex index d57d420..6542838 100644 --- a/test/support/test_room_adapter.ex +++ b/test/support/test_room_adapter.ex @@ -1,4 +1,5 @@ defmodule MatrixAppService.TestRoomAdapter do + @moduledoc false @behaviour MatrixAppService.Adapter.Room @impl MatrixAppService.Adapter.Room diff --git a/test/support/test_transaction_adapter.ex b/test/support/test_transaction_adapter.ex index c39371b..26c552a 100644 --- a/test/support/test_transaction_adapter.ex +++ b/test/support/test_transaction_adapter.ex @@ -1,6 +1,7 @@ defmodule MatrixAppService.TestTransactionAdapter do - require Logger + @moduledoc false @behaviour MatrixAppService.Adapter.Transaction + require Logger @impl MatrixAppService.Adapter.Transaction def new_event(%MatrixAppService.Event{}) do diff --git a/test/support/test_user_adapter.ex b/test/support/test_user_adapter.ex index c402e0b..3738313 100644 --- a/test/support/test_user_adapter.ex +++ b/test/support/test_user_adapter.ex @@ -1,4 +1,5 @@ defmodule MatrixAppService.TestUserAdapter do + @moduledoc false @behaviour MatrixAppService.Adapter.User @impl MatrixAppService.Adapter.User |