chronoscope/test/chronoscope_web/controllers/error_json_test.exs

13 lines
370 B
Elixir
Raw Normal View History

2024-03-09 14:27:14 -05:00
defmodule ChronoscopeWeb.ErrorJSONTest do
use ChronoscopeWeb.ConnCase, async: true
test "renders 404" do
assert ChronoscopeWeb.ErrorJSON.render("404.json", %{}) == %{errors: %{detail: "Not Found"}}
end
test "renders 500" do
assert ChronoscopeWeb.ErrorJSON.render("500.json", %{}) ==
%{errors: %{detail: "Internal Server Error"}}
end
end