Files
elixirAI/test/elixir_ai_web/controllers/error_json_test.exs
Alex Mickelson 0fd243d259
Some checks failed
CI/CD Pipeline / build (push) Failing after 3s
disable external connections while testing with mimix
2026-03-13 15:21:06 -06:00

13 lines
359 B
Elixir

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