tusker_push/test/tusker_push_web/controllers/error_json_test.exs

13 lines
366 B
Elixir

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