elx-scopes/test/scopes_web/controllers/error_json_test.exs
2025-06-13 17:51:47 +02:00

12 lines
350 B
Elixir

defmodule ScopesWeb.ErrorJSONTest do
use ScopesWeb.ConnCase, async: true
test "renders 404" do
assert ScopesWeb.ErrorJSON.render("404.json", %{}) == %{errors: %{detail: "Not Found"}}
end
test "renders 500" do
assert ScopesWeb.ErrorJSON.render("500.json", %{}) ==
%{errors: %{detail: "Internal Server Error"}}
end
end