summaryrefslogtreecommitdiff
path: root/test/matrix_app_service_web/views/error_view_test.exs
blob: e23078a5196a282d6b56c91b413e1c7f231bb625 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
defmodule MatrixAppServiceWeb.ErrorViewTest do
  use MatrixAppServiceWeb.ConnCase, async: true

  # Bring render/3 and render_to_string/3 for testing custom views
  import Phoenix.View

  test "renders 404.json" do
    assert render(MatrixAppServiceWeb.ErrorView, "404.json", []) == %{
             errors: %{detail: "Not Found"}
           }
  end

  test "renders 500.json" do
    assert render(MatrixAppServiceWeb.ErrorView, "500.json", []) ==
             %{errors: %{detail: "Internal Server Error"}}
  end
end