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