12 lines
342 B
Elixir
12 lines
342 B
Elixir
defmodule ExmrWeb.ErrorJSONTest do
|
|
use ExmrWeb.ConnCase, async: true
|
|
|
|
test "renders 404" do
|
|
assert ExmrWeb.ErrorJSON.render("404.json", %{}) == %{errors: %{detail: "Not Found"}}
|
|
end
|
|
|
|
test "renders 500" do
|
|
assert ExmrWeb.ErrorJSON.render("500.json", %{}) ==
|
|
%{errors: %{detail: "Internal Server Error"}}
|
|
end
|
|
end
|