sloanelybutsurely.com/test/web/controllers/error_json_test.exs

12 lines
332 B
Elixir

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