Init git repo

This commit is contained in:
Pim Kunis 2021-06-22 14:09:25 +02:00
commit e6e4472b94
27 changed files with 814 additions and 0 deletions

View file

@ -0,0 +1,15 @@
defmodule MatrixServerWeb.ErrorViewTest do
use MatrixServerWeb.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(MatrixServerWeb.ErrorView, "404.json", []) == %{errors: %{detail: "Not Found"}}
end
test "renders 500.json" do
assert render(MatrixServerWeb.ErrorView, "500.json", []) ==
%{errors: %{detail: "Internal Server Error"}}
end
end