slovocast/app/test/app_web/controllers/error_json_test.exs

13 lines
338 B
Elixir
Raw Normal View History

2024-04-23 02:30:14 +00:00
defmodule AppWeb.ErrorJSONTest do
use AppWeb.ConnCase, async: true
test "renders 404" do
assert AppWeb.ErrorJSON.render("404.json", %{}) == %{errors: %{detail: "Not Found"}}
end
test "renders 500" do
assert AppWeb.ErrorJSON.render("500.json", %{}) ==
%{errors: %{detail: "Internal Server Error"}}
end
end