mirror of
https://codeberg.org/JasterV/intisync.ex.git
synced 2026-04-26 18:10:07 +00:00
12 lines
358 B
Elixir
12 lines
358 B
Elixir
defmodule IntisyncWeb.ErrorJSONTest do
|
|
use IntisyncWeb.ConnCase, async: true
|
|
|
|
test "renders 404" do
|
|
assert IntisyncWeb.ErrorJSON.render("404.json", %{}) == %{errors: %{detail: "Not Found"}}
|
|
end
|
|
|
|
test "renders 500" do
|
|
assert IntisyncWeb.ErrorJSON.render("500.json", %{}) ==
|
|
%{errors: %{detail: "Internal Server Error"}}
|
|
end
|
|
end
|