summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre de Lacroix <pierre@pdelacroix.com>2020-10-11 04:24:40 +0200
committerPierre de Lacroix <pierre@pdelacroix.com>2020-10-11 04:24:40 +0200
commit4918f44a767a8f6100b83b5b4ba97bea569a2c2b (patch)
tree450cf0cc3d7674b09df8f7bd3fe7ea47a18a3eb5
parentdocs (diff)
prepare tests
-rw-r--r--test/matrix_app_service_web/controllers/room_controller_test.exs3
-rw-r--r--test/matrix_app_service_web/controllers/thir_party_controller_test.exs3
-rw-r--r--test/matrix_app_service_web/controllers/transaction_controller_test.exs3
-rw-r--r--test/matrix_app_service_web/controllers/user_controller_test.exs3
-rw-r--r--test/support/channel_case.ex34
5 files changed, 12 insertions, 34 deletions
diff --git a/test/matrix_app_service_web/controllers/room_controller_test.exs b/test/matrix_app_service_web/controllers/room_controller_test.exs
new file mode 100644
index 0000000..a8cfabc
--- /dev/null
+++ b/test/matrix_app_service_web/controllers/room_controller_test.exs
@@ -0,0 +1,3 @@
+defmodule MatrixAppServiceWeb.RoomControllerTest do
+ use MatrixAppServiceWeb.ConnCase
+end
diff --git a/test/matrix_app_service_web/controllers/thir_party_controller_test.exs b/test/matrix_app_service_web/controllers/thir_party_controller_test.exs
new file mode 100644
index 0000000..961e751
--- /dev/null
+++ b/test/matrix_app_service_web/controllers/thir_party_controller_test.exs
@@ -0,0 +1,3 @@
+defmodule MatrixAppServiceWeb.ThirdPartyControllerTest do
+ use MatrixAppServiceWeb.ConnCase
+end
diff --git a/test/matrix_app_service_web/controllers/transaction_controller_test.exs b/test/matrix_app_service_web/controllers/transaction_controller_test.exs
new file mode 100644
index 0000000..639ca62
--- /dev/null
+++ b/test/matrix_app_service_web/controllers/transaction_controller_test.exs
@@ -0,0 +1,3 @@
+defmodule MatrixAppServiceWeb.TransactionControllerTest do
+ use MatrixAppServiceWeb.ConnCase
+end
diff --git a/test/matrix_app_service_web/controllers/user_controller_test.exs b/test/matrix_app_service_web/controllers/user_controller_test.exs
new file mode 100644
index 0000000..6b061c1
--- /dev/null
+++ b/test/matrix_app_service_web/controllers/user_controller_test.exs
@@ -0,0 +1,3 @@
+defmodule MatrixAppServiceWeb.UserControllerTest do
+ use MatrixAppServiceWeb.ConnCase
+end
diff --git a/test/support/channel_case.ex b/test/support/channel_case.ex
deleted file mode 100644
index 069b724..0000000
--- a/test/support/channel_case.ex
+++ /dev/null
@@ -1,34 +0,0 @@
-defmodule MatrixAppServiceWeb.ChannelCase do
- @moduledoc """
- This module defines the test case to be used by
- channel tests.
-
- Such tests rely on `Phoenix.ChannelTest` and also
- import other functionality to make it easier
- to build common data structures and query the data layer.
-
- Finally, if the test case interacts with the database,
- we enable the SQL sandbox, so changes done to the database
- are reverted at the end of every test. If you are using
- PostgreSQL, you can even run database tests asynchronously
- by setting `use MatrixAppServiceWeb.ChannelCase, async: true`, although
- this option is not recommended for other databases.
- """
-
- use ExUnit.CaseTemplate
-
- using do
- quote do
- # Import conveniences for testing with channels
- import Phoenix.ChannelTest
- import MatrixAppServiceWeb.ChannelCase
-
- # The default endpoint for testing
- @endpoint MatrixAppServiceWeb.Endpoint
- end
- end
-
- setup _tags do
- :ok
- end
-end