pinchflat/test/pinchflat_web/controllers/error_json_test.exs
2024-05-01 14:24:06 -07:00

12 lines
363 B
Elixir

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