summaryrefslogtreecommitdiff
path: root/test/matrix_app_service_web/views/error_view_test.exs
blob: fb0d11eba65f85b245ba7af81d1ff4fbf04583e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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